GET api/UsuariosEmpresas/GetUsuariosEmpresa?usuarioId={usuarioId}&strEmail={strEmail}
Devuelve el usuario indicado, filtro por email, usuarioId indicar 0
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| usuarioId | integer |
Required |
|
| strEmail |
Email del usuario campo string |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
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 |
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-11-29T06:40:07.4180878+01:00",
"FechaBaja": "2025-11-29T06:40:07.4180878+01:00",
"FechaModificacion": "2025-11-29T06:40:07.4180878+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-11-29T06:40:07.4180878+01:00</FechaAlta> <FechaBaja>2025-11-29T06:40:07.4180878+01:00</FechaBaja> <FechaModificacion>2025-11-29T06:40:07.4180878+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>