GET api/TerrestreTiposContenedores/{id}

Obtiene la informacion de un tipo de contenedor por su número de indentificacion (int).

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

.

integer

Required

Body Parameters

None.

Response Information

Resource Description

TE_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

FECHA_ALTA

.

date

None.

USUARIO_ALTA

.

integer

None.

FECHA_MOD

.

date

None.

USUARIO_MODIFICACION

.

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",
  "FECHA_ALTA": "2025-12-06T01:33:05.6050056-03:00",
  "USUARIO_ALTA": 7,
  "FECHA_MOD": "2025-12-06T01:33:05.6050056-03:00",
  "USUARIO_MODIFICACION": 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.Terrestre">
  <Activo>true</Activo>
  <CaracteristicasContenedor>sample string 5</CaracteristicasContenedor>
  <DESCRIPCION>sample string 2</DESCRIPCION>
  <FECHA_ALTA>2025-12-06T01:33:05.6050056-03:00</FECHA_ALTA>
  <FECHA_MOD>2025-12-06T01:33:05.6050056-03:00</FECHA_MOD>
  <ID_TIPO_CONTENEDOR>1</ID_TIPO_CONTENEDOR>
  <PesoBruto>4.1</PesoBruto>
  <Tara>3.1</Tara>
  <USUARIO_ALTA>7</USUARIO_ALTA>
  <USUARIO_MODIFICACION>1</USUARIO_MODIFICACION>
</TIPO_CONTENEDOR>