POST api/servicios/pagar/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

ServiciosPagarParameters
NameDescriptionTypeAdditional information
id

integer

None.

pago

decimal number

None.

motivo

string

None.

fecha_dia

integer

None.

fecha_mes

integer

None.

fecha_ano

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "pago": 2.0,
  "motivo": "sample string 3",
  "fecha_dia": 4,
  "fecha_mes": 5,
  "fecha_ano": 6
}

text/html

Sample:
{"id":1,"pago":2.0,"motivo":"sample string 3","fecha_dia":4,"fecha_mes":5,"fecha_ano":6}

application/xml, text/xml

Sample:
<ServiciosPagarParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/sysserver.Areas.Admin.Servicios">
  <fecha_ano>6</fecha_ano>
  <fecha_dia>4</fecha_dia>
  <fecha_mes>5</fecha_mes>
  <id>1</id>
  <motivo>sample string 3</motivo>
  <pago>2</pago>
</ServiciosPagarParameters>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.