POST api/CostRate/CostBatch
Request Information
URI Parameters
None.
Body Parameters
CostBatchRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
None. |
|
| type | string |
None. |
|
| rate | integer |
None. |
|
| user_id |
当前登录者Id |
string |
None. |
| token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "sample string 1",
"type": "sample string 2",
"rate": 1,
"user_id": "sample string 3",
"token": "sample string 4"
}
application/xml, text/xml
Sample:
<CostBatchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model"> <token>sample string 4</token> <user_id>sample string 3</user_id> <id>sample string 1</id> <rate>1</rate> <type>sample string 2</type> </CostBatchRequest>
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. |