Everest Card — API reference
  • Credit
  • Debit
  • Prepaid
  • Corebanking
  • OAuth2
  • Delivery
Information
Cards
    Card applications
      Service that lists card applicationspostService that returns the application information for a card based on its Shadow Card NumberpostService that changes the card application statuspost
    Card issuance and personalisation
      Service that lists the products a customer is eligible for, based on customer numberpostService for creating a Individual Bank Cardpost/debit/api/createIndividualSupplementaryCardpostService for creating a Corporate Bank Cardpost/debit/api/createDummyCorporateCardpostService for creating a Virtual CardpostService that lists cards currently in the printing processpostService that cancels card issuance based on the Shadow Card Numberpost
    Card lifecycle
      List tenant debit cards for a customerpostService that lists Shadow and Masked card information based on the customer’s Tenant informationpostService that allows updating the status information of a cardpostService that lists detailed card informationpostService that lists detailed card informationpostService that retrieves card informationpostCard renewal servicepostService that updates a card to a renewable status and performs card renewalpostService that checks the existence of a card based on the open card numberpostService for adding Debit Card logspost
    No-name cards
      Service for creating a No Name card applicationpostService that cancels a No Name card applicationpostService that updates a No Name card applicationpostService that activates a No Name cardpostService that creates a card via No Name ApplicationpostService that receives a No Name card application and creates the cardpostNo Name Card renewal servicepostService that performs card renewal via No Name ApplicationpostService that updates a No Name card to a renewable status and performs card renewalpost
Customers and accounts
    Branch management
      Service that changes the branch associated with a cardpostService that changes the customer’s associated branchpostService that changes the customer’s associated branchpostService that lists customer numbers by branchpost
    Customers
      Service that lists corporate cards of a individual customerpostService that retrieves customer asset informationpostService that returns whether the customer is flagged as riskypostService that lists customer card informationpost
    Account linking
      Service that links an account to a cardpost/debit/api/detachCardAccountpost/debit/api/detachCardAccountByAccountNumberpostService that updates the account linked to a cardpostService that lists card account information based on account numberpostService that lists card account information based on Shadow Card NumberpostService that updates the account linked to a cardpost/debit/api/saveCardAccountCurrencyConversionpost/debit/api/getCardAccountCurrencyConversionpost
Transactions
    Service that lists Bank Card transaction details based on UTIDpostService that lists Bank Card transaction details based on UTIDpostService that lists all transactions related to a cardpost/debit/api/updateTransactionForBNPLpostService that lists Digital Slip preferences based on a given UTIDpostService that lists authorization transactions within a given date rangepostService that lists customer debit transactions based on request criteriapost
Limits and controls
    Card and customer limits
      Service that lists available e-commerce limit informationpost
    Operation limits
      Service that lists parameter-based limit values defined on a cardpostService that lists customized limits or parameter-based limit details defined on a cardpostService that customizes the transaction limit of a cardpostService that removes customized limits defined for a cardpostService that lists customized or parameter-based limit details defined for the customerpostService that customizes the customer’s transaction limitpostService that removes customizable limits defined for a customerpostService that lists parameter-based limit values defined for the customerpost
    Permissions and restrictions
      Service that lists restrictions defined on a cardpostService that adds or removes restrictions on a cardpost/debit/api/saveCardBnplPermissionpostService that updates Digital Slip delivery preferencespostService that lists Digital Slip preferencespost
Security
    PIN and card security
      Service that generates a card PINpostService that enables changing the card’s PINpostService that validates the accuracy of the card PINpostService that validates the card PIN using an encrypted PIN blockpostService that generates the card PIN using an encrypted PIN blockpostService that changes the card’s PIN using an encrypted PIN blockpostService that increases the PIN retry counterpostService that validates the card PIN using an encrypted PIN blockpostCVV validation servicepostCVV validation servicepostCVV generation servicepostService that lists the card PIN transaction historypostService that resets the CVV retry counter on a cardpost
Platform
    Platform operations
      Method that checks whether the service is operationalpostRefresh Cachepost
    Reference data
      Service that retrieves the card type based on the BIN numberpost
SchemasError codes
powered by Zudoku
Debit Digital Channels Integration
Debit Digital Channels Integration

Operation limits

Cap what a card may do per transaction, per day, per week and per month, by channel and operation type.


Service that lists parameter-based limit values defined on a card

POST
https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit
/debit/api/getCardLimitationParameterData

Retrieves the card limitation parameters for a debit card identified by ShadowCardNumber. Returns a list of CardLimitParameterData including daily, weekly, monthly, yearly transaction amounts and counts, per transaction amount limits, ratios, No-CVM consecutive transaction limits, profile code/description, and channel/network/event keys. Data is fetched from _dbtServiceProxy.GetCardLimitationParameterData.

Service that lists parameter-based limit values defined on a card › Request Body

GetCardLimitationParameterDataRequest
shadowCardNumber
​string | null

Shadow Card Number - [Optional]

Service that lists parameter-based limit values defined on a card › Responses

Success

GetCardLimitationParameterDataResponse
​array | null

Card Limit Parameter Data List - [Optional]

POST/debit/api/getCardLimitationParameterData
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/getCardLimitationParameterData \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "shadowCardNumber": "shadowCardNumber" }'
Example Request Body
{ "shadowCardNumber": "shadowCardNumber" }
json
Example Responses
{ "cardLimitParameterDataList": [ { "shadowCardNumber": "shadowCardNumber", "customerLimitationFlag": true, "profileCode": "profileCode", "profileDescription": "profileDescription", "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0, "noCvmConsecutiveTransactionCount": 0, "noCvmConsecutiveTransactionLimit": 0 } ] }
json
application/json

Service that lists customized limits or parameter-based limit details defined on a card

POST
https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit
/debit/api/getCardOperationLimit

Retrieves the operation limits for a debit card based on the CardRefNumber and Channel. Returns a list of GetCardOperationLimitResponseItem containing transaction limits by daily, weekly, monthly, and yearly amounts and counts, along with limit profile and event details. Uses _dbtServiceProxy.GetCardOperationLimit to fetch the data.

Service that lists customized limits or parameter-based limit details defined on a card › Request Body

GetCardOperationLimitRequest
cardRefNumber
​string | null

Card Ref Number - [Optional]

channel
​string | null

Channel - [Optional]

Service that lists customized limits or parameter-based limit details defined on a card › Responses

Success

GetCardOperationLimitResponse
​array | null

List Of Operation Limit - [Optional]

POST/debit/api/getCardOperationLimit
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/getCardOperationLimit \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "cardRefNumber": "cardRefNumber", "channel": "channel" }'
Example Request Body
{ "cardRefNumber": "cardRefNumber", "channel": "channel" }
json
Example Responses
{ "listOfOperationLimit": [ { "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0 } ] }
json
application/json

Service that customizes the transaction limit of a card

POST
https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit
/debit/api/setCardOperationLimit

Sets or updates operation limits for a specific debit card. Accepts card reference number, channel, and a list of operation limit items including daily, weekly, monthly, and yearly limits, per-transaction limits, and profile details. Returns the result of each operation with success status, errors, and updated operation limit data.

Service that customizes the transaction limit of a card › Request Body

SetCardOperationLimitRequest
channel
​string | null

Channel - [Optional]

cardRefNumber
​string | null

Card Ref Number - [Optional]

​array | null

List Of Operation Limit - [Optional]

Service that customizes the transaction limit of a card › Responses

Success

SetCardOperationLimitResponse
​array | null

List Of Result - [Optional]

POST/debit/api/setCardOperationLimit
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/setCardOperationLimit \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "channel": "channel", "cardRefNumber": "cardRefNumber", "listOfOperationLimit": [ { "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "profileCode": "profileCode", "profileDescription": "profileDescription", "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0, "cardType": "cardType" } ] }'
Example Request Body
{ "channel": "channel", "cardRefNumber": "cardRefNumber", "listOfOperationLimit": [ { "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "profileCode": "profileCode", "profileDescription": "profileDescription", "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0, "cardType": "cardType" } ] }
json
Example Responses
{ "listOfResult": [ { "actionType": 0, "success": true, "errors": [ { "errorCode": "errorCode", "errorText": "errorText" } ], "operationLimit": { "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "profileCode": "profileCode", "profileDescription": "profileDescription", "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0, "cardType": "cardType" } } ] }
json
application/json

Service that removes customized limits defined for a card

POST
https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit
/debit/api/removeCardOperationLimit

Removes specific operation limits for a card. Accepts a list of operation limit keys and deletes them from the system, returning the result status and any associated errors.

Service that removes customized limits defined for a card › Request Body

RemoveCardOperationLimitRequest
channel
​string | null

Channel - [Optional]

cardRefNumber
​string | null

Card Ref Number - [Optional]

​array | null

List Of Remove Operation Limit Keys - [Optional]

Service that removes customized limits defined for a card › Responses

Success

RemoveCardOperationLimitResponse
​array | null

List Of Result - [Optional]

POST/debit/api/removeCardOperationLimit
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/removeCardOperationLimit \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "channel": "channel", "cardRefNumber": "cardRefNumber", "listOfRemoveOperationLimitKeys": [ { "operationLimitRecordId": 0 } ] }'
Example Request Body
{ "channel": "channel", "cardRefNumber": "cardRefNumber", "listOfRemoveOperationLimitKeys": [ { "operationLimitRecordId": 0 } ] }
json
Example Responses
{ "listOfResult": [ { "actionType": 0, "success": true, "operationLimitKeys": { "operationLimitRecordId": 0 }, "errors": [ { "errorCode": "errorCode", "errorText": "errorText" } ] } ] }
json
application/json

Service that lists customized or parameter-based limit details defined for the customer

POST
https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit
/debit/api/getCustomerOperationLimit

Returns customer operation limits for debit cards. Retrieves operation limits via CustomerService, filters by CardType = D and CustomLimitationChangeFlag = true, and returns profile information with per-transaction and period-based limits.

Service that lists customized or parameter-based limit details defined for the customer › Request Body

GetCustomerOperationLimitRequest
customerNumber
​integer · int64 · required

Customer Number - [Optional]

channel
​string | null

Channel - [Optional]

Service that lists customized or parameter-based limit details defined for the customer › Responses

Success

GetCustomerOperationLimitResponse
​array | null

List Of Operation Limit - [Optional]

POST/debit/api/getCustomerOperationLimit
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/getCustomerOperationLimit \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "channel": "channel", "customerNumber": 0 }'
Example Request Body
{ "channel": "channel", "customerNumber": 0 }
json
Example Responses
{ "listOfOperationLimit": [ { "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "profileCode": "profileCode", "profileDescription": "profileDescription", "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0, "cardType": "cardType" } ] }
json
application/json

Service that customizes the customer’s transaction limit

POST
https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit
/debit/api/setCustomerOperationLimit

Sets or updates operation limits for a customer. Accepts customer number, channel, and a list of operation limit definitions, applying them to the customer account.

Service that customizes the customer’s transaction limit › Request Body

SetCustomerOperationLimitRequest
customerNumber
​integer · int64 · required

Customer Number - [Optional]

channel
​string | null

Channel - [Optional]

​array | null

List Of Operation Limit - [Optional]

Service that customizes the customer’s transaction limit › Responses

Success

SetCustomerOperationLimitResponse
​array | null

List Of Result - [Optional]

POST/debit/api/setCustomerOperationLimit
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/setCustomerOperationLimit \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "channel": "channel", "customerNumber": 0, "listOfOperationLimit": [ { "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "profileCode": "profileCode", "profileDescription": "profileDescription", "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0, "cardType": "cardType" } ] }'
Example Request Body
{ "channel": "channel", "customerNumber": 0, "listOfOperationLimit": [ { "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "profileCode": "profileCode", "profileDescription": "profileDescription", "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0, "cardType": "cardType" } ] }
json
Example Responses
{ "listOfResult": [ { "actionType": 0, "success": true, "errors": [ { "errorCode": "errorCode", "errorText": "errorText" } ], "operationLimit": { "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "profileCode": "profileCode", "profileDescription": "profileDescription", "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0, "cardType": "cardType" } } ] }
json
application/json

Service that removes customizable limits defined for a customer

POST
https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit
/debit/api/removeCustomerOperationLimit

Removes specific operation limits for a customer. Accepts a list of operation limit keys and deletes them from the system, returning the result status and any associated errors.

Service that removes customizable limits defined for a customer › Request Body

RemoveCustomerOperationLimitRequest
customerNumber
​integer · int64 · required

Customer Number - [Optional]

channel
​string | null

Channel - [Optional]

​array | null

List Of Remove Operation Limit Keys - [Optional]

Service that removes customizable limits defined for a customer › Responses

Success

RemoveCustomerOperationLimitResponse
​array | null

List Of Result - [Optional]

POST/debit/api/removeCustomerOperationLimit
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/removeCustomerOperationLimit \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "channel": "channel", "customerNumber": 0, "listOfRemoveOperationLimitKeys": [ { "operationLimitRecordId": 0 } ] }'
Example Request Body
{ "channel": "channel", "customerNumber": 0, "listOfRemoveOperationLimitKeys": [ { "operationLimitRecordId": 0 } ] }
json
Example Responses
{ "listOfResult": [ { "actionType": 0, "success": true, "errors": [ { "errorCode": "errorCode", "errorText": "errorText" } ], "operationLimitKeys": { "operationLimitRecordId": 0 } } ] }
json
application/json

Service that lists parameter-based limit values defined for the customer

POST
https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit
/debit/api/getCustomerLimitationParameterData

Returns customer limitation parameter data for debit cards. Retrieves limitation profiles via CustomerService, filters records by CardType = D, and returns profile, transaction limit ratios, period-based limits, and detailed limitation key information.

Service that lists parameter-based limit values defined for the customer › Request Body

GetCustomerLimitationParametersRequest
customerNumber
​integer · int64 · required

Customer Number - [Optional]

Service that lists parameter-based limit values defined for the customer › Responses

Success

GetCustomerLimitationParametersResponse
​array | null

Customer Limitation Parameter Data List - [Optional]

POST/debit/api/getCustomerLimitationParameterData
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/getCustomerLimitationParameterData \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "customerNumber": 0 }'
Example Request Body
{ "customerNumber": 0 }
json
Example Responses
{ "customerLimitationParameterDataList": [ { "customerNumber": 0, "customerLimitationFlag": true, "profileCode": "profileCode", "profileDescription": "profileDescription", "keys": { "limitProfileDetailId": 0, "trnLimitationGroupCode": "trnLimitationGroupCode", "trnLimitationGroupDescription": "trnLimitationGroupDescription", "trnMainLimitationGroupCode": "trnMainLimitationGroupCode", "trnMainLimitationGroupDescription": "trnMainLimitationGroupDescription", "networkType": "networkType", "networkDescription": "networkDescription", "channelType": "channelType", "channelDescription": "channelDescription", "eventCode": "eventCode", "eventDescription": "eventDescription", "customLimitationChangeFlag": true }, "perTrnAmount": 0, "perTrnAmountLimitRatio": 0, "dailyTrnCount": 0, "dailyTrnAmount": 0, "weeklyTrnCount": 0, "weeklyTrnAmount": 0, "monthlyTrnCount": 0, "monthlyTrnAmount": 0, "yearlyTrnCount": 0, "yearlyTrnAmount": 0, "cardType": "cardType" } ] }
json
application/json

Card and customer limitsPermissions and restrictions