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

Permissions and restrictions

Turn individual capabilities on and off for a card — e-commerce, international use, mail order and other miscellaneous options.


Service that lists restrictions defined on a card

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

Retrieves the permissions set on a debit card based on ShadowCardNumber. Returns a list of DebitCardPermissions including restriction codes, descriptions, permission indicators, channel, and security flags. Uses _dbtServiceProxy.GetCardPermissions for fetching data.

Service that lists restrictions defined on a card › Request Body

GetCardPermissionsRequest
shadowCardNumber
​string | null

Shadow Card Number - [Optional]

Service that lists restrictions defined on a card › Responses

Success

GetCardPermissionsResponse
​array | null

Card Permissions List - [Optional]

POST/debit/api/getCardPermissions
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/getCardPermissions \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "shadowCardNumber": "shadowCardNumber" }'
Example Request Body
{ "shadowCardNumber": "shadowCardNumber" }
json
Example Responses
{ "cardPermissionsList": [ { "restrictionCode": "restrictionCode", "restrictionCodeDescription": "restrictionCodeDescription", "restrictionPermissionIndicator": "restrictionPermissionIndicator", "restrictionPermissionIndicatorDescription": "restrictionPermissionIndicatorDescription", "channel": "channel", "securityFlag": true } ] }
json
application/json

Service that adds or removes restrictions on a card

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

Saves or updates card permissions for a specific card. Accepts card reference number, shadow card number, channel, and a list of permission items with start/end dates and restriction codes. Returns the count of changed permissions and their record IDs.

Service that adds or removes restrictions on a card › Request Body

SaveCardPermissionsRequest
channel
​string | null

Channel - [Optional]

cardRefNumber
​string | null

Card Ref Number - [Optional]

shadowCardNumber
​string | null

Shadow Card Number - [Optional]

​array | null

Permissions - [Optional]

Service that adds or removes restrictions on a card › Responses

Success

SaveCardPermissionsResponse
changedCount
​integer · int32 · required

Changed Count - [Optional]

listOfRecordId
​array | null

List Of Record Id - [Optional]

POST/debit/api/saveCardPermissions
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/saveCardPermissions \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "channel": "channel", "cardRefNumber": "cardRefNumber", "shadowCardNumber": "shadowCardNumber", "permissions": [ { "restrictionCode": "restrictionCode", "permitted": true, "startDate": "2024-08-25T15:00:00Z", "endDate": "2024-08-25T15:00:00Z", "transactionId": "transactionId" } ] }'
Example Request Body
{ "channel": "channel", "cardRefNumber": "cardRefNumber", "shadowCardNumber": "shadowCardNumber", "permissions": [ { "restrictionCode": "restrictionCode", "permitted": true, "startDate": "2024-08-25T15:00:00Z", "endDate": "2024-08-25T15:00:00Z", "transactionId": "transactionId" } ] }
json
Example Responses
{ "changedCount": 0, "listOfRecordId": [ 0 ] }
json
application/json

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

Saves or updates Buy Now Pay Later (BNPL) permissions for a card. Accepts card reference number, channel, and BNPL permission details to enable or disable BNPL features on the card.

Request Body

SaveCardBnplPermissionRequest
bnplFlag
​boolean · required

Bnpl Flag - [Optional]

channel
​string | null

Channel - [Optional]

cardRefNumber
​string | null

Card Ref Number - [Optional]

Responses

Success

SaveCardBnplPermissionResponse
bnplFlag
​boolean · required

Bnpl Flag - [Optional]

cardRefNumber
​string | null

Card Ref Number - [Optional]

POST/debit/api/saveCardBnplPermission
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/saveCardBnplPermission \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "channel": "channel", "cardRefNumber": "cardRefNumber", "bnplFlag": true }'
Example Request Body
{ "channel": "channel", "cardRefNumber": "cardRefNumber", "bnplFlag": true }
json
Example Responses
{ "cardRefNumber": "cardRefNumber", "bnplFlag": true }
json
application/json

Service that updates Digital Slip delivery preferences

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

Changes miscellaneous options of a debit card, supporting individual or all cards for a customer, and returns the list of log record IDs.

Service that updates Digital Slip delivery preferences › Request Body

ChangeCardMiscOptionRequest
customerNumber
​integer · int64 · required

Customer Number - [Optional]

allMainCardFlag
​boolean · required

All Main Card Flag - [Optional]

allCardFlag
​boolean · required

All Card Flag - [Optional]

channel
​string | null

Channel - [Optional]

optionType
​string | null

Option Type - [Optional]

optionValue
​string | null

Option Value - [Optional]

mainCardRefNumber
​string | null

Main Card Ref Number - [Optional]

cardRefNumber
​string | null

Card Ref Number - [Optional]

Service that updates Digital Slip delivery preferences › Responses

Success

CardMiscOptionResponse
listOfCardMiscOptionLogRecordId
​array | null

List Of Card Misc Option Log Record Id - [Optional]

POST/debit/api/changeCardMiscOption
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/changeCardMiscOption \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "channel": "channel", "optionType": "optionType", "optionValue": "optionValue", "customerNumber": 0, "mainCardRefNumber": "mainCardRefNumber", "cardRefNumber": "cardRefNumber", "allMainCardFlag": true, "allCardFlag": true }'
Example Request Body
{ "channel": "channel", "optionType": "optionType", "optionValue": "optionValue", "customerNumber": 0, "mainCardRefNumber": "mainCardRefNumber", "cardRefNumber": "cardRefNumber", "allMainCardFlag": true, "allCardFlag": true }
json
Example Responses
{ "listOfCardMiscOptionLogRecordId": [ 0 ] }
json
application/json

Service that lists Digital Slip preferences

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

Retrieves miscellaneous options for debit cards based on filters such as OptionType, CustomerNumber, MainCardRefNumber, CardRefNumber, and flags for all main cards or all cards. Returns a list of CardMiscOptionData containing the option type, option value, customer number, main card reference, and card reference. Uses _dbtServiceProxy.GetCardMiscOption for fetching the data.

Service that lists Digital Slip preferences › Request Body

GetCardMiscOptionRequest
customerNumber
​integer · int64 · required

Customer Number - [Optional]

allMainCardFlag
​boolean · required

All Main Card Flag - [Optional]

allCardFlag
​boolean · required

All Card Flag - [Optional]

channel
​string | null

Channel - [Optional]

optionType
​string | null

Option Type - [Optional]

mainCardRefNumber
​string | null

Main Card Ref Number - [Optional]

cardRefNumber
​string | null

Card Ref Number - [Optional]

Service that lists Digital Slip preferences › Responses

Success

GetCardMiscOptionResponse
​array | null

Card Misc Option Data List - [Optional]

POST/debit/api/getCardMiscOption
curl https://devcard.sim-ant.com/SandBox/IntegrationDigitalChannelDebit/debit/api/getCardMiscOption \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "channel": "channel", "optionType": "optionType", "customerNumber": 0, "mainCardRefNumber": "mainCardRefNumber", "cardRefNumber": "cardRefNumber", "allMainCardFlag": true, "allCardFlag": true }'
Example Request Body
{ "channel": "channel", "optionType": "optionType", "customerNumber": 0, "mainCardRefNumber": "mainCardRefNumber", "cardRefNumber": "cardRefNumber", "allMainCardFlag": true, "allCardFlag": true }
json
Example Responses
{ "cardMiscOptionDataList": [ { "customerNumber": 0, "mainCardRefNumber": "mainCardRefNumber", "cardRefNumber": "cardRefNumber", "optionType": "optionType", "optionValue": "optionValue" } ] }
json
application/json

Operation limitsPIN and card security