PUT api/UsuariosEmpresas/PutUsuariosEmpresa?idiomaId={idiomaId}
Actualiza los datos de un usuario.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idiomaId |
Id idioma |
string |
Required |
Body Parameters
Objeto UsuariosEmpresa
UsuariosEmpresas| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id del usuario |
integer |
None. |
| Nombre |
Nombre |
string |
Required String length: inclusive between 0 and 100 |
| Apellido |
Apellido |
string |
Required String length: inclusive between 0 and 100 |
|
|
string |
Required String length: inclusive between 0 and 50 |
|
| Telefono |
Telefono |
string |
String length: inclusive between 0 and 50 |
| Tipo |
Tipo |
string |
String length: inclusive between 0 and 50 |
| FechaAlta |
Fecha de alta |
date |
None. |
| FechaBaja |
Fecha de baja |
date |
None. |
| FechaModificacion |
Fecha de modificación |
date |
None. |
| Password |
Password |
string |
String length: inclusive between 0 and 50 |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Nombre": "sample string 2",
"Apellido": "sample string 3",
"Email": "sample string 4",
"Telefono": "sample string 5",
"Tipo": "sample string 6",
"FechaAlta": "2025-10-28T06:27:55.6215905+01:00",
"FechaBaja": "2025-10-28T06:27:55.6215905+01:00",
"FechaModificacion": "2025-10-28T06:27:55.6215905+01:00",
"Password": "sample string 8"
}
application/xml, text/xml
Sample:
<UsuariosEmpresas xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Seed_APi_Bella_Aurora"> <Apellido>sample string 3</Apellido> <Email>sample string 4</Email> <FechaAlta>2025-10-28T06:27:55.6215905+01:00</FechaAlta> <FechaBaja>2025-10-28T06:27:55.6215905+01:00</FechaBaja> <FechaModificacion>2025-10-28T06:27:55.6215905+01:00</FechaModificacion> <Id>1</Id> <Nombre>sample string 2</Nombre> <Password>sample string 8</Password> <Telefono>sample string 5</Telefono> <Tipo>sample string 6</Tipo> </UsuariosEmpresas>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Respuesta| Name | Description | Type | Additional information |
|---|---|---|---|
| Finalizado |
Indica si la operacion a finalizado con exito. |
boolean |
None. |
| ID |
Id del nuevo registro de la operacion. |
integer |
None. |
| FK_MensajesControlados_Id |
Id del mensaje |
integer |
None. |
| Descripcion |
Mensaje de respuesta |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Finalizado": true,
"ID": 2,
"FK_MensajesControlados_Id": 3,
"Descripcion": "sample string 4"
}
application/xml, text/xml
Sample:
<Respuesta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Seed_APi_Bella_Aurora"> <Descripcion>sample string 4</Descripcion> <FK_MensajesControlados_Id>3</FK_MensajesControlados_Id> <Finalizado>true</Finalizado> <ID>2</ID> </Respuesta>