GET api/FtesMovOperativos/ObtenerCausalesDevolucion

Retorna el Listado de todas las Causales de Devolución

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CausalDevolucion
NameDescriptionTypeAdditional information
ID

Clave Primaria

integer

None.

S_NOMBRE

Nombre de la causal de Devolución

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "S_NOMBRE": "sample string 2"
  },
  {
    "ID": 1,
    "S_NOMBRE": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCausalDevolucion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIMAPI.Models.FtesMovOperativos">
  <CausalDevolucion>
    <ID>1</ID>
    <S_NOMBRE>sample string 2</S_NOMBRE>
  </CausalDevolucion>
  <CausalDevolucion>
    <ID>1</ID>
    <S_NOMBRE>sample string 2</S_NOMBRE>
  </CausalDevolucion>
</ArrayOfCausalDevolucion>