GET api/UsuariosEmpresas/GetUsuariosEmpresa

Devuelve todos los usuarios

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

UsuariosEmpresas
NameDescriptionTypeAdditional 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

Email

Email

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": "2024-09-19T20:14:20.4161889+02:00",
  "FechaBaja": "2024-09-19T20:14:20.4161889+02:00",
  "FechaModificacion": "2024-09-19T20:14:20.4161889+02: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>2024-09-19T20:14:20.4161889+02:00</FechaAlta>
  <FechaBaja>2024-09-19T20:14:20.4161889+02:00</FechaBaja>
  <FechaModificacion>2024-09-19T20:14:20.4161889+02: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>