GET api/TerrestreBasesImponibles
Obtiene una lista de todas las bases imponibles.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of TE_BASE_IMPONIBLE| Name | Description | Type | Additional information |
|---|---|---|---|
| ID_BASE_IMPONIBLE |
. |
integer |
None. |
| NOMBRE |
. |
string |
Required String length: inclusive between 0 and 50 |
Response Formats
application/json, text/json
Sample:
[
{
"ID_BASE_IMPONIBLE": 1,
"NOMBRE": "sample string 2"
},
{
"ID_BASE_IMPONIBLE": 1,
"NOMBRE": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfBASE_IMPONIBLE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClimberApi.Models.Terrestre">
<BASE_IMPONIBLE>
<ID_BASE_IMPONIBLE>1</ID_BASE_IMPONIBLE>
<NOMBRE>sample string 2</NOMBRE>
</BASE_IMPONIBLE>
<BASE_IMPONIBLE>
<ID_BASE_IMPONIBLE>1</ID_BASE_IMPONIBLE>
<NOMBRE>sample string 2</NOMBRE>
</BASE_IMPONIBLE>
</ArrayOfBASE_IMPONIBLE>