GET api/NoPago

Documentation for 'Get'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Referencia": "sample string 1",
  "Items": [
    {
      "IdRazon": 1,
      "Razon": "sample string 2"
    },
    {
      "IdRazon": 1,
      "Razon": "sample string 2"
    },
    {
      "IdRazon": 1,
      "Razon": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<RazonesNoPagoEnviar xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrestamosMovilesApi.Models">
  <Items>
    <RazonesNoPago>
      <IdRazon>1</IdRazon>
      <Razon>sample string 2</Razon>
    </RazonesNoPago>
    <RazonesNoPago>
      <IdRazon>1</IdRazon>
      <Razon>sample string 2</Razon>
    </RazonesNoPago>
    <RazonesNoPago>
      <IdRazon>1</IdRazon>
      <Razon>sample string 2</Razon>
    </RazonesNoPago>
  </Items>
  <Referencia>sample string 1</Referencia>
</RazonesNoPagoEnviar>