Add Transaction Limit to Customer Card

This places a daily transaction amount and count limit on the card.

The limits placed are valid for a day. For instance, an amount limit of 50,000 naira and count of 5 on ATM transactions mean customer can only perform 5 transactions for that day which in total can’t exceed 50,000 naira

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

circle-info

channel here represents from where the card is being used could be ATM, POS or WEB

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

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

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

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

MaxTransactionCount*

String

Count limit to be placed on card transactions

MaxTransactionAmount *

String

Amount limit in kobo to be placed on card transactions

Reference*

String

Unique reference per request

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

Last updated