FreezeCard API
Endpoints
Live POST
https://pay.onlinepay.ai/card/freezeCard
Sandbox POST
https://testpay.onlinepay.ai/card/freezeCard
Request Parameters
Basic Information
Parameter | Type | Required | Description |
---|---|---|---|
merNo | Integer | Yes | Merchant Number, Unique identifier assigned to the merchant by the onlinepay payment platform when registering with onlinepay |
cardNo | String | Yes | card number |
applyOrderNo | String | Yes | onlinePay apply order number,result of cardOpen API |
sign | string | Yes | Signature, MD5(merNo+cardNo+applyOrderNo+privateKey) or RSA |
Example Request
{
"merNo": "104001001",
"cardNo": "4083870020395826",
"applyOrderNo": "CAD0240927153321448",
"sign": "e8b6b0b9f0b0f8b0b8b0a0b0c0d0e0f"
}
Responses Body
Parameter | Type | Required | Description |
---|---|---|---|
code | string | Yes | If the value is 00000, it will return success, other please refer to Error Code |
message | string | Yes | Interface returns description |
Example Responses
{
"code":"00000",
"message":"SUCCESS"
}