Freeze Cards

This temporarily renders a card unusable for a period of time

To freeze a card you make a post request to the freeze cards endpoint by passing Token, SerialNo, Reason, AccountNumber, and Reference in the request body.

Here is an example request with a sample payload using the staging endpoint

// Live URL 
http://api.mybankone.com/thirdpartyapiservice/apiservice/Cards/Freeze

POST https://staging.mybankone.com/thirdpartyapiservice/apiservice/Cards/Freeze

Request Body

Name
Type
Description

Token*

String

Authentication Key for the request

SerialNo*

String

Card serial number

Reason *

String

Reason for freezing customer card

AccountNumber*

String

Customer’s account number

Reference*

String

Unique reference per request

{
   "IsSuccessful": true,
   "ResponseCode" : null,
   "ResponseMessage" : "Card operation successful",
   "SerialNo" : "5225454",
   "TransactionReference" : "F001092003"
}

Last updated