GET api/FtesMovOperativos/ObtenerLetrasVia
Retorna el Listado de Letras que pueden ser asignadas a las vías en un elemento de dirección.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of LetraVia| Name | Description | Type | Additional information |
|---|---|---|---|
| ID_LETRAVIA |
Clave Primaria |
integer |
None. |
| S_NOMBRE |
Letras de la vía. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID_LETRAVIA": 1,
"S_NOMBRE": "sample string 2"
},
{
"ID_LETRAVIA": 1,
"S_NOMBRE": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfLetraVia xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIMAPI.Models.FtesMovOperativos">
<LetraVia>
<ID_LETRAVIA>1</ID_LETRAVIA>
<S_NOMBRE>sample string 2</S_NOMBRE>
</LetraVia>
<LetraVia>
<ID_LETRAVIA>1</ID_LETRAVIA>
<S_NOMBRE>sample string 2</S_NOMBRE>
</LetraVia>
</ArrayOfLetraVia>