GET api/TerrestreTiposReserva/{id}

Obtiene un tipo de reserva

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

.

integer

Required

Body Parameters

None.

Response Information

Resource Description

TE_TIPOS_RESERVA
NameDescriptionTypeAdditional information
ID_TIPOS_RESERVA

.

integer

None.

NOMBRE

.

string

Required

String length: inclusive between 0 and 255

Activo

.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ID_TIPOS_RESERVA": 1,
  "NOMBRE": "sample string 2",
  "Activo": true
}

application/xml, text/xml

Sample:
<TIPOS_RESERVA xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClimberApi.Models.Terrestre">
  <Activo>true</Activo>
  <ID_TIPOS_RESERVA>1</ID_TIPOS_RESERVA>
  <NOMBRE>sample string 2</NOMBRE>
</TIPOS_RESERVA>