Update Transaction Limit on Customer Card

This updates transaction limit placed on a customers card.

To update transaction limit on a customer's card you make a post request to the update transaction limit endpoint by passing Token, SerialNo, Channel, MaxTransactionAmount, Reference, and MaxTransactionCount in the request body.

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

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

POST https://staging.mybankone.com/thirdpartyapiservice/apiservice/Cards/TransactionLimit/Update

Request Body

Name
Type
Description

Token*

String

Authentication Key for the request

SerialNo*

String

Card serial number

MaxTransactionAmount*

String

Transaction amount limit to be placed on card transactions

MaxTransactionCount*

String

Count limit to be placed on card transactions

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