GET api/TerrestreEstadosReserva

Obtiene los estados de reserva

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TE_ESTADO_RESERVA
NameDescriptionTypeAdditional information
ID_ESTADO_RESERVA

.

integer

None.

DESCRIPCION

.

string

Required

String length: inclusive between 0 and 50

ORDEN

.

integer

Range: inclusive between 0 and 99

facturacion

.

boolean

None.

Activo

.

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID_ESTADO_RESERVA": 1,
    "DESCRIPCION": "sample string 2",
    "ORDEN": 3,
    "facturacion": true,
    "Activo": true
  },
  {
    "ID_ESTADO_RESERVA": 1,
    "DESCRIPCION": "sample string 2",
    "ORDEN": 3,
    "facturacion": true,
    "Activo": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfESTADO_RESERVA xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClimberApi.Models.Terrestre">
  <ESTADO_RESERVA>
    <Activo>true</Activo>
    <DESCRIPCION>sample string 2</DESCRIPCION>
    <ID_ESTADO_RESERVA>1</ID_ESTADO_RESERVA>
    <ORDEN>3</ORDEN>
    <facturacion>true</facturacion>
  </ESTADO_RESERVA>
  <ESTADO_RESERVA>
    <Activo>true</Activo>
    <DESCRIPCION>sample string 2</DESCRIPCION>
    <ID_ESTADO_RESERVA>1</ID_ESTADO_RESERVA>
    <ORDEN>3</ORDEN>
    <facturacion>true</facturacion>
  </ESTADO_RESERVA>
</ArrayOfESTADO_RESERVA>