GET api/ForwarderTiposContenedores/{id}

Obtiene un tipo de contenedor por id (int)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

.

integer

Required

Body Parameters

None.

Response Information

Resource Description

FW_TIPO_CONTENEDOR
NameDescriptionTypeAdditional information
ID_TIPO_CONTENEDOR

.

integer

None.

DESCRIPCION

.

string

None.

Tara

.

decimal number

None.

PesoBruto

.

decimal number

None.

CaracteristicasContenedor

.

string

String length: inclusive between 0 and 10

teus

.

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_TIPO_CONTENEDOR": 1,
  "DESCRIPCION": "sample string 2",
  "Tara": 3.1,
  "PesoBruto": 4.1,
  "CaracteristicasContenedor": "sample string 5",
  "teus": 6,
  "fechaAlta": "2025-12-06T01:35:16.4196947-03:00",
  "usuarioAlta": 8,
  "fechaModificacion": "2025-12-06T01:35:16.4196947-03:00",
  "usuarioModificacion": 1,
  "activo": true
}

application/xml, text/xml

Sample:
<TIPO_CONTENEDOR 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:35:16.4196947-03:00</fechaAlta>
  <fechaModificacion xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">2025-12-06T01:35:16.4196947-03:00</fechaModificacion>
  <usuarioAlta xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">8</usuarioAlta>
  <usuarioModificacion xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">1</usuarioModificacion>
  <CaracteristicasContenedor>sample string 5</CaracteristicasContenedor>
  <DESCRIPCION>sample string 2</DESCRIPCION>
  <ID_TIPO_CONTENEDOR>1</ID_TIPO_CONTENEDOR>
  <PesoBruto>4.1</PesoBruto>
  <Tara>3.1</Tara>
  <teus>6</teus>
</TIPO_CONTENEDOR>