GET api/NvoccTiposIncoterm/{id}

Obtiene un tipo de incoterm por id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

.

integer

Required

Body Parameters

None.

Response Information

Resource Description

NV_TIPO_INCOTERM
NameDescriptionTypeAdditional information
ID_TIPO_INCOTERM

.

integer

None.

NOMBRE

.

string

Required

String length: inclusive between 0 and 255

fechaAlta

.

date

None.

usuarioAlta

.

integer

None.

fechaModificacion

.

date

None.

usuarioModificacion

.

integer

None.

activo

.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ID_TIPO_INCOTERM": 1,
  "NOMBRE": "sample string 2",
  "fechaAlta": "2025-12-06T01:38:20.7678687-03:00",
  "usuarioAlta": 4,
  "fechaModificacion": "2025-12-06T01:38:20.7678687-03:00",
  "usuarioModificacion": 1,
  "activo": true
}

application/xml, text/xml

Sample:
<TIPO_INCOTERM 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:38:20.7678687-03:00</fechaAlta>
  <fechaModificacion xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">2025-12-06T01:38:20.7678687-03:00</fechaModificacion>
  <usuarioAlta xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">4</usuarioAlta>
  <usuarioModificacion xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">1</usuarioModificacion>
  <ID_TIPO_INCOTERM>1</ID_TIPO_INCOTERM>
  <NOMBRE>sample string 2</NOMBRE>
</TIPO_INCOTERM>