View Transaction Limit on Customer Card

This returns transaction limit on a customer's card

To view transaction limit on a customers card you make a post request to the view transaction limit endpoint by passing Token, SerialNo, Channel, and Reference in the request body.

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

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

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

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" : false,
"RequestStatus": false,
"MaxTransactionAmount" : 0,
"MaxTransactionCount" : 0,
"ResponseDescription" : "No transaction limit found for card on this Channel",
"ResponseStatus"  : false
}

Last updated