POST api/SAWS/PendientesConvenio?tipconven={tipconven}&tipident={tipident}&ident={ident}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tipconven

integer

Required

tipident

integer

Required

ident

string

Required

Body Parameters

None.

Response Information

Resource Description

PendientesConvenioResponseModel
NameDescriptionTypeAdditional information
Montdisp

decimal number

None.

respcursor

Collection of PendientesConvenioResponseDetailModel

None.

coderror

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Montdisp": 1.0,
  "respcursor": [
    {
      "COD_RUBRO": "sample string 1",
      "SERVICIO": "sample string 2",
      "PERIODO": 3,
      "MTO_PRINCI": 4.0,
      "MTO_INTERE": 5.0,
      "SUBTOTAL": 6.0
    },
    {
      "COD_RUBRO": "sample string 1",
      "SERVICIO": "sample string 2",
      "PERIODO": 3,
      "MTO_PRINCI": 4.0,
      "MTO_INTERE": 5.0,
      "SUBTOTAL": 6.0
    }
  ],
  "coderror": "sample string 2"
}

application/xml, text/xml

Sample:
<PendientesConvenioResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizFramework.Web.Services.Areas.Collection.ViewModel">
  <Montdisp>1</Montdisp>
  <coderror>sample string 2</coderror>
  <respcursor>
    <PendientesConvenioResponseDetailModel>
      <COD_RUBRO>sample string 1</COD_RUBRO>
      <MTO_INTERE>5</MTO_INTERE>
      <MTO_PRINCI>4</MTO_PRINCI>
      <PERIODO>3</PERIODO>
      <SERVICIO>sample string 2</SERVICIO>
      <SUBTOTAL>6</SUBTOTAL>
    </PendientesConvenioResponseDetailModel>
    <PendientesConvenioResponseDetailModel>
      <COD_RUBRO>sample string 1</COD_RUBRO>
      <MTO_INTERE>5</MTO_INTERE>
      <MTO_PRINCI>4</MTO_PRINCI>
      <PERIODO>3</PERIODO>
      <SERVICIO>sample string 2</SERVICIO>
      <SUBTOTAL>6</SUBTOTAL>
    </PendientesConvenioResponseDetailModel>
  </respcursor>
</PendientesConvenioResponseModel>