GET api/TerrestreEstadosReserva/{id}

Obtiene un estado de reserva

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

.

integer

Required

Body Parameters

None.

Response Information

Resource Description

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
}

application/xml, text/xml

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