GET api/NvoccTiposContenedor/{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

NV_TipoContenedor
NameDescriptionTypeAdditional information
idTipoContenedor

.

integer

None.

DESCRIPCION

.

string

None.

Tara

.

decimal number

None.

PesoBruto

.

decimal number

None.

teus

.

integer

None.

CaracteristicasContenedor

.

string

String length: inclusive between 0 and 10

fechaAlta

.

date

None.

usuarioAlta

.

integer

None.

fechaModificacion

.

date

None.

usuarioModificacion

.

integer

None.

activo

.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "idTipoContenedor": 1,
  "DESCRIPCION": "sample string 2",
  "Tara": 3.1,
  "PesoBruto": 4.1,
  "teus": 5,
  "CaracteristicasContenedor": "sample string 6",
  "fechaAlta": "2025-12-06T01:35:15.4665625-03:00",
  "usuarioAlta": 8,
  "fechaModificacion": "2025-12-06T01:35:15.4665625-03:00",
  "usuarioModificacion": 1,
  "activo": true
}

application/xml, text/xml

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