GET api/Empresas/getTipoContrato
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
TipoContratoListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| content | Collection of TipoContratoObj |
None. |
|
| status | integer |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"content": [
{
"id": 1,
"Nombre": "sample string 2",
"RolAutList": "sample string 3",
"FechaCreacion": "2025-10-29T15:18:00.3703191-04:00"
},
{
"id": 1,
"Nombre": "sample string 2",
"RolAutList": "sample string 3",
"FechaCreacion": "2025-10-29T15:18:00.3703191-04:00"
}
],
"status": 1,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<TipoContratoListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EXPU_Backend.Models">
<message>sample string 2</message>
<status>1</status>
<content>
<TipoContratoObj>
<FechaCreacion>2025-10-29T15:18:00.3703191-04:00</FechaCreacion>
<Nombre>sample string 2</Nombre>
<RolAutList>sample string 3</RolAutList>
<id>1</id>
</TipoContratoObj>
<TipoContratoObj>
<FechaCreacion>2025-10-29T15:18:00.3703191-04:00</FechaCreacion>
<Nombre>sample string 2</Nombre>
<RolAutList>sample string 3</RolAutList>
<id>1</id>
</TipoContratoObj>
</content>
</TipoContratoListResponse>