2.1.48 Enquiry on card operation request v2
Path:/v2/openapi/card/operation/result
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Description:
Note ⚠️: Subsequent request body and response body on the interface may add more fields; therefore, when using this interface, new fields that are not recognized need to be ignored to prevent errors
Example Request:
{
"card_id": "00003454323400000028888",
"request_number": "48d2741747a449b2968a91e2523feb22",
"type": 1
}
Request Parameter:
Parameter name | Type | Required | Description |
---|---|---|---|
card_id | string | true | Card ID |
request_number | string | true | Request number,non-repeat for other request;Maximum 64 characters; |
type | integer | true | Request type:1 Lock;2 Unlock;3 Report Lose;4 Reset Password;5 Card Replacement |
API Response:
Parameter name | Type | Description |
---|---|---|
code | string | Error code |
data | Object | Response data object |
card_id | string | Card id |
request_number | string | Request number |
operate_status | integer | Status code: 0 In operation;1 Third party success;2 Fail;98 Pending payment;99 Waiting for third party |
express_company | string | Express company, Only Card Replacement operate will have this info |
express_no | string | Express Number, Only Card Replacement operate will have this info |
msg | string | Error message |
Example Response:
{
"code": "00000",
"msg": "ok",
"data": {
"card_id": "00003454323400000028888",
"request_number": "48d2741747a449b2968a91e2523feb22",
"operate_status": 1,
"express_company": "sf-express",
"express_no": "SF123456789"
}
}