GET api/Empresas/getTipoContrato

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

TipoContratoListResponse
NameDescriptionTypeAdditional 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": "2024-11-28T07:23:39.736266-05:00"
    },
    {
      "id": 1,
      "Nombre": "sample string 2",
      "RolAutList": "sample string 3",
      "FechaCreacion": "2024-11-28T07:23:39.736266-05: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>2024-11-28T07:23:39.736266-05:00</FechaCreacion>
      <Nombre>sample string 2</Nombre>
      <RolAutList>sample string 3</RolAutList>
      <id>1</id>
    </TipoContratoObj>
    <TipoContratoObj>
      <FechaCreacion>2024-11-28T07:23:39.736266-05:00</FechaCreacion>
      <Nombre>sample string 2</Nombre>
      <RolAutList>sample string 3</RolAutList>
      <id>1</id>
    </TipoContratoObj>
  </content>
</TipoContratoListResponse>