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:
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. |