Disable channel for customer card

This disables a particular channel for a customers card.

Customers can select the channels they don’t their card to be used on. For instance, a customer decides to disable WEB channel thereby rendering his card unusable for transactions performed via web.

To disable a channel for a customer's card you make a post request to the disable channel endpoint by passing Token, SerialNo, Channel, and Reference in the request body.

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

Here is an example request with sample payload to the staging endpoint.

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

Request Body

Name
Type
Description

Token*

String

Authentication Key for the request

SerialNo*

String

Card serial number

Channel *

String

Channel on which the card is being used

Reference*

String

Unique reference per request

{
   "IsSuccessful": true,
   "RequestStatus" : true 
   "ResponseDescription" : "Card Operation Successful"
   "ResponseStatus" : "Card Operation Successful"
}

Last updated