POST api/Invoice/CalibrationHandInvoice
发票金额手动校准
Request Information
URI Parameters
None.
Body Parameters
HandCbonRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| invoice_id |
主键 |
integer |
None. |
| total_money |
合计金额(不含税金额) |
string |
None. |
| total_tax |
合计税额 |
string |
None. |
| user_id |
当前登录者Id |
string |
None. |
| token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"invoice_id": 1,
"total_money": "sample string 2",
"total_tax": "sample string 3",
"user_id": "sample string 4",
"token": "sample string 5"
}
application/xml, text/xml
Sample:
<HandCbonRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model"> <token>sample string 5</token> <user_id>sample string 4</user_id> <invoice_id>1</invoice_id> <total_money>sample string 2</total_money> <total_tax>sample string 3</total_tax> </HandCbonRequest>
application/x-www-form-urlencoded
Sample:
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. |