GET api/TerrestreTiposMercaderia
Obtiene los tipos de mercadería
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of TE_TIPO_MERCADERIA| Name | Description | Type | Additional information |
|---|---|---|---|
| ID_TIPO_MERCADERIA |
. |
integer |
None. |
| NOMBRE |
. |
string |
Required String length: inclusive between 0 and 255 |
| Activo |
. |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID_TIPO_MERCADERIA": 1,
"NOMBRE": "sample string 2",
"Activo": true
},
{
"ID_TIPO_MERCADERIA": 1,
"NOMBRE": "sample string 2",
"Activo": true
}
]
application/xml, text/xml
Sample:
<ArrayOfTIPO_MERCADERIA xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClimberApi.Models.Terrestre">
<TIPO_MERCADERIA>
<Activo>true</Activo>
<ID_TIPO_MERCADERIA>1</ID_TIPO_MERCADERIA>
<NOMBRE>sample string 2</NOMBRE>
</TIPO_MERCADERIA>
<TIPO_MERCADERIA>
<Activo>true</Activo>
<ID_TIPO_MERCADERIA>1</ID_TIPO_MERCADERIA>
<NOMBRE>sample string 2</NOMBRE>
</TIPO_MERCADERIA>
</ArrayOfTIPO_MERCADERIA>