GET api/ForwarderConceptos/{id}

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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

.

integer

Required

Body Parameters

None.

Response Information

Resource Description

FW_CONCEPTO
NameDescriptionTypeAdditional information
ID_CONCEPTO

.

integer

None.

AgregarA

.

EnumAgregarAF

None.

DESCRIPCION

.

string

Required

String length: inclusive between 0 and 255

ItemCodeSAP

.

string

String length: inclusive between 0 and 50

Venta

True si aplica para la venta.

boolean

None.

Compra

True si aplica para la compra.

boolean

None.

Impuesto

Valor numérico del % de IVA o "EXE" (exento) o "NG" (no gravado).

string

String length: inclusive between 0 and 20

fechaAlta

.

date

None.

usuarioAlta

.

integer

None.

fechaModificacion

.

date

None.

usuarioModificacion

.

integer

None.

activo

.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ID_CONCEPTO": 1,
  "AgregarA": 1,
  "DESCRIPCION": "sample string 2",
  "ItemCodeSAP": "sample string 3",
  "Venta": true,
  "Compra": true,
  "Impuesto": "sample string 6",
  "fechaAlta": "2025-12-06T01:37:22.622687-03:00",
  "usuarioAlta": 8,
  "fechaModificacion": "2025-12-06T01:37:22.622687-03:00",
  "usuarioModificacion": 1,
  "activo": true
}

application/xml, text/xml

Sample:
<CONCEPTO 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:37:22.622687-03:00</fechaAlta>
  <fechaModificacion xmlns="http://schemas.datacontract.org/2004/07/Climber.Models">2025-12-06T01:37:22.622687-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>
  <AgregarA>Guia_Aerea</AgregarA>
  <Compra>true</Compra>
  <DESCRIPCION>sample string 2</DESCRIPCION>
  <ID_CONCEPTO>1</ID_CONCEPTO>
  <Impuesto>sample string 6</Impuesto>
  <ItemCodeSAP>sample string 3</ItemCodeSAP>
  <Venta>true</Venta>
</CONCEPTO>