POST api/GoGo/BatchCBSClaim
批量设置认领中
Request Information
URI Parameters
None.
Body Parameters
ClaimDto| Name | Description | Type | Additional information |
|---|---|---|---|
| TransactionDetailIdList |
交易明细Id |
Collection of integer |
None. |
| AdminName |
操作人 |
string |
None. |
| BelongPlat |
0 未认领 1:pcbway 2 gogo未确认 3:gogo英文 4:gogo日文 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TransactionDetailIdList": [
1,
2
],
"AdminName": "sample string 1",
"BelongPlat": 2
}
Response Information
Resource Description
BaseResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status |
Request processing results ('ok' or 'error') |
string |
None. |
| ErrorText |
Error Description ( Empty when request processing successfully ) |
string |
None. |
| Code |
状态码 |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"ErrorText": "sample string 2",
"Code": 3
}