GET api/UsuariosEmpresas?Id_Usuario={Id_Usuario}
Devuelve el usuario de la empresa indicada.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Id_Usuario |
Id de usuario |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
UsuariosEmpresasName | 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 |
Response 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-01-22T20:04:31.6797442+01:00", "FechaBaja": "2025-01-22T20:04:31.6797442+01:00", "FechaModificacion": "2025-01-22T20:04:31.6797442+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-01-22T20:04:31.6797442+01:00</FechaAlta> <FechaBaja>2025-01-22T20:04:31.6797442+01:00</FechaBaja> <FechaModificacion>2025-01-22T20:04:31.6797442+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>