GET api/ForwarderAeropuertos/{id}

Obtiene la informacion de un aeropuerto por número de indentificacion (int).

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

.

integer

Required

Body Parameters

None.

Response Information

Resource Description

FW_AEROPUERTOS
NameDescriptionTypeAdditional information
ID_AEROPUERTOS

.

integer

None.

Codigo

.

string

String length: inclusive between 0 and 3

Nombre

.

string

None.

CodNombre

.

string

None.

fechaAlta

.

date

None.

usuarioAlta

.

integer

None.

fechaModificacion

.

date

None.

usuarioModificacion

.

integer

None.

activo

.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ID_AEROPUERTOS": 1,
  "Codigo": "sample string 2",
  "Nombre": "sample string 3",
  "CodNombre": "sample string 2 - sample string 3",
  "fechaAlta": "2025-12-06T01:38:08.5935012-03:00",
  "usuarioAlta": 5,
  "fechaModificacion": "2025-12-06T01:38:08.5935012-03:00",
  "usuarioModificacion": 1,
  "activo": true
}

application/xml, text/xml

Sample:
<AEROPUERTOS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClimberApi.Models.Forwarder">
  <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:38:08.5935012-03:00</fechaAlta>
  <fechaModificacion xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">2025-12-06T01:38:08.5935012-03:00</fechaModificacion>
  <usuarioAlta xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">5</usuarioAlta>
  <usuarioModificacion xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">1</usuarioModificacion>
  <Codigo>sample string 2</Codigo>
  <ID_AEROPUERTOS>1</ID_AEROPUERTOS>
  <Nombre>sample string 3</Nombre>
</AEROPUERTOS>