GET api/TerrestreConceptos/{id}
Obtiene la informacion de un concepto por su número de indentificacion (int).
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TE_CONCEPTO| Name | Description | Type | Additional 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 |
| Activo |
. |
boolean |
None. |
| Venta |
. |
boolean |
None. |
| Compra |
. |
boolean |
None. |
| Impuesto |
. |
string |
String length: inclusive between 0 and 20 |
Response Formats
application/json, text/json
Sample:
{
"ID_CONCEPTO": 1,
"AgregarA": 1,
"DESCRIPCION": "sample string 2",
"ItemCodeSAP": "sample string 3",
"Activo": true,
"Venta": true,
"Compra": true,
"Impuesto": "sample string 7"
}
application/xml, text/xml
Sample:
<CONCEPTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClimberApi.Models.Terrestre"> <Activo>true</Activo> <AgregarA>Guia_Aerea</AgregarA> <Compra>true</Compra> <DESCRIPCION>sample string 2</DESCRIPCION> <ID_CONCEPTO>1</ID_CONCEPTO> <Impuesto>sample string 7</Impuesto> <ItemCodeSAP>sample string 3</ItemCodeSAP> <Venta>true</Venta> </CONCEPTO>