Change Card Transaction Status To Voided
This API is used to change card transaction status to Voided.Only development is available
Path: /api/v1/card/transactionStatusToVoided
Method: POST
Content-Type
application/json
Headers
Key
Type
Required
Comments
authorization
string
YES
Authorization Header
Body
Key
Type
Required
Comments
api_key
string
YES
api key
request_id
string
YES
Unique id; the shortest is 20 characters, the longest is 64 characters
timestamp
string
YES
13-digit; Valid for plus or minus 30 seconds
transaction_id
string
YES
transaction id
sign
string
YES
sign: MD5(api_key+timestamp+secret+request_id)lowercase hex
Example
{ api_key: 'ac97c403062e94a094131aa332df6458', request_id: '3480750277f9499783d9119c5e494944', timestamp: '1701689168773', transaction_id: 'c9e5b4fb257641bdbd632ec42647c5e6', sign: 'ac6e379fa81d38ba6a28ac51a20ceeec' }signature example:MD5(ac97c403062e94a094131aa332df64581701689168773a446b6660552582e08b043b84634e1fe3480750277f9499783d9119c5e494944)
Response
Key
Type
Comments
code
number
Response code
msg
string
Response message
Example
{ "code": 10200, "msg": "ok" }
Last updated