POST api/Ingresos?offline={offline}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| offline | boolean |
Required |
Body Parameters
Collection of IngresoModel| Name | Description | Type | Additional information |
|---|---|---|---|
| codCliente | string |
None. |
|
| nombreCliente | string |
None. |
|
| monto | decimal number |
None. |
|
| montoCheque | decimal number |
None. |
|
| numeroCheque | decimal number |
None. |
|
| banco | string |
None. |
|
| montoTarjeta | decimal number |
None. |
|
| montoTransferencia | decimal number |
None. |
|
| balanceingreso | decimal number |
None. |
|
| codIngreso | string |
None. |
|
| fecha | string |
None. |
|
| hora | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"codCliente": "sample string 1",
"nombreCliente": "sample string 2",
"monto": 3.1,
"montoCheque": 4.1,
"numeroCheque": 5.1,
"banco": "sample string 6",
"montoTarjeta": 7.1,
"montoTransferencia": 8.1,
"balanceingreso": 9.1,
"codIngreso": "sample string 10",
"fecha": "sample string 11",
"hora": "sample string 12"
},
{
"codCliente": "sample string 1",
"nombreCliente": "sample string 2",
"monto": 3.1,
"montoCheque": 4.1,
"numeroCheque": 5.1,
"banco": "sample string 6",
"montoTarjeta": 7.1,
"montoTransferencia": 8.1,
"balanceingreso": 9.1,
"codIngreso": "sample string 10",
"fecha": "sample string 11",
"hora": "sample string 12"
}
]
application/xml, text/xml
Sample:
<ArrayOfIngresoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiMobileInfoplus.Models">
<IngresoModel>
<balanceingreso>9.1</balanceingreso>
<banco>sample string 6</banco>
<codCliente>sample string 1</codCliente>
<codIngreso>sample string 10</codIngreso>
<fecha>sample string 11</fecha>
<hora>sample string 12</hora>
<monto>3.1</monto>
<montoCheque>4.1</montoCheque>
<montoTarjeta>7.1</montoTarjeta>
<montoTransferencia>8.1</montoTransferencia>
<nombreCliente>sample string 2</nombreCliente>
<numeroCheque>5.1</numeroCheque>
</IngresoModel>
<IngresoModel>
<balanceingreso>9.1</balanceingreso>
<banco>sample string 6</banco>
<codCliente>sample string 1</codCliente>
<codIngreso>sample string 10</codIngreso>
<fecha>sample string 11</fecha>
<hora>sample string 12</hora>
<monto>3.1</monto>
<montoCheque>4.1</montoCheque>
<montoTarjeta>7.1</montoTarjeta>
<montoTransferencia>8.1</montoTransferencia>
<nombreCliente>sample string 2</nombreCliente>
<numeroCheque>5.1</numeroCheque>
</IngresoModel>
</ArrayOfIngresoModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResultOfResponseModelOfSyncErrorModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | ResponseModelOfSyncErrorModel |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.