GET api/NvoccEstadosReservas/{id}

Obtiene un estado de reserva por id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

.

integer

Required

Body Parameters

None.

Response Information

Resource Description

NV_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.

Tipo

.

integer

None.

fechaAlta

.

date

None.

usuarioAlta

.

integer

None.

fechaModificacion

.

date

None.

usuarioModificacion

.

integer

None.

activo

.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ID_ESTADO_RESERVA": 1,
  "DESCRIPCION": "sample string 2",
  "ORDEN": 3,
  "facturacion": true,
  "Tipo": 5,
  "fechaAlta": "2025-12-06T01:33:29.1522861-03:00",
  "usuarioAlta": 7,
  "fechaModificacion": "2025-12-06T01:33:29.1522861-03:00",
  "usuarioModificacion": 1,
  "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.Nvocc">
  <activo xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">true</activo>
  <fechaAlta xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">2025-12-06T01:33:29.1522861-03:00</fechaAlta>
  <fechaModificacion xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">2025-12-06T01:33:29.1522861-03:00</fechaModificacion>
  <usuarioAlta xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">7</usuarioAlta>
  <usuarioModificacion xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">1</usuarioModificacion>
  <DESCRIPCION>sample string 2</DESCRIPCION>
  <ID_ESTADO_RESERVA>1</ID_ESTADO_RESERVA>
  <ORDEN>3</ORDEN>
  <Tipo>5</Tipo>
  <facturacion>true</facturacion>
</ESTADO_RESERVA>