POST api/GoGo/ApplyCBSTransactionDetail
更新审核状态 (通过、不通过)
Request Information
URI Parameters
None.
Body Parameters
RelationCBSTransactionDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| TransactionDetailId |
交易明细id |
integer |
None. |
| ApplyStatus |
审核状态 审核通过 = 2, 审核不通过 = 3 |
integer |
None. |
| GroupNo |
包号 |
string |
None. |
| UserNo |
客编 |
string |
None. |
| ApplyApprovalName |
审批人 |
string |
None. |
| ApplyType |
认领类型 预付款 = 8, 订单到账充值 = 9, |
integer |
None. |
| AdminName |
操作人 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TransactionDetailId": 1,
"ApplyStatus": 2,
"GroupNo": "sample string 3",
"UserNo": "sample string 4",
"ApplyApprovalName": "sample string 5",
"ApplyType": 6,
"AdminName": "sample string 7"
}
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
}