POST api/cheque/xlsx
Request Information
URI Parameters
None.
Body Parameters
Cheque| Name | Description | Type | Additional information |
|---|---|---|---|
| chofer_Id | integer |
None. |
|
| nombreChofer | string |
None. |
|
| monto | decimal number |
None. |
|
| letrasMonto | string |
None. |
|
| liq | integer |
None. |
|
| descripcion | string |
None. |
|
| fecha | string |
None. |
|
| plantilla | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"chofer_Id": 1,
"nombreChofer": "sample string 2",
"monto": 3.1,
"letrasMonto": "sample string 4",
"liq": 5,
"descripcion": "sample string 6",
"fecha": "sample string 7",
"plantilla": 8
}
text/html
Sample:
{"chofer_Id":1,"nombreChofer":"sample string 2","monto":3.1,"letrasMonto":"sample string 4","liq":5,"descripcion":"sample string 6","fecha":"sample string 7","plantilla":8}
application/xml, text/xml
Sample:
<Cheque xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Business.Models"> <chofer_Id>1</chofer_Id> <descripcion>sample string 6</descripcion> <fecha>sample string 7</fecha> <letrasMonto>sample string 4</letrasMonto> <liq>5</liq> <monto>3.1</monto> <nombreChofer>sample string 2</nombreChofer> <plantilla>8</plantilla> </Cheque>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |