GET api/TerrestreConceptos

Obtiene una lista de todos los conceptos.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TE_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

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"
  },
  {
    "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:
<ArrayOfCONCEPTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClimberApi.Models.Terrestre">
  <CONCEPTO>
    <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>
  <CONCEPTO>
    <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>
</ArrayOfCONCEPTO>