Skip to main content

UnFreezeCard API

Endpoints

Live POST https://pay.onlinepay.ai/card/unFreezeCard

Sandbox POST https://testpay.onlinepay.ai/card/unFreezeCard

Request Parameters

Basic Information

ParameterTypeRequiredDescription
merNoIntegerYesMerchant Number, Unique identifier assigned to the merchant by the onlinepay payment platform when registering with onlinepay
cardNoStringYescard number
applyOrderNoStringYesonlinePay apply order number,result of cardOpen API
signstringYesSignature, MD5(merNo+cardNo+applyOrderNo+privateKey) or RSA

Example Request

{
"merNo": "104001001",
"cardNo": "4083870020395826",
"applyOrderNo": "CAD0240927153321448",
"sign": "e8b6b0b9f0b0f8b0b8b0a0b0c0d0e0f"
}

Responses Body

ParameterTypeRequiredDescription
codestringYesIf the value is 00000, it will return success, other please refer to Error Code
messagestringYesInterface returns description

Example Responses

{
"code":"00000",
"message":"SUCCESS"
}