v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB

Update Card Limits

Manage daily, weekly, monthly, transactional and contactless limits on a per card basis. For compliance reasons, the overall highest values for each limit category is pre-defined and cannot exceed these values. Typically a card can spend up to 15,000 EUR per month in outbound transactions. You do not need to update any or all of these limits, they are configured to be defaults and can be updated depending upon your use case. The response details how much of what limit has been used as well.

patch/card/limits

Headers

api-keystring required
Authorizationstring required

Request body

cardIdstring required

The unique Id of the card you want to fetch. The Create Card endpoint returns a cardId parameter

Response

200

namestring
idstring
typestring
maskedCardNumberstring
expiryDatastring
statusstring
isEnrolledFor3dSecureboolean
isCard3dSecureActivatedboolean
activatedAtstring
linkedAccountIdstring
parentWalletIdstring
linkedAccountCurrencystring
createdAtstring

Example response

{
  "name": "john smith",
  "id": "032f0a16-9f8a-443f-8792-e3085d9cb443",
  "type": "VIRTUAL",
  "maskedCardNumber": "474367******8980",
  "expiryData": "2025-11-30T23:59:59Z",
  "status": "ACTIVE",
  "isEnrolledFor3dSecure": true,
  "isCard3dSecureActivated": true,
  "security": {
    "contactlessEnabled": true,
    "withdrawalEnabled": true,
    "internetPurchaseEnabled": true,
    "overallLimitsEnabled": true
  },
  "activatedAt": "2023-11-24T12:10:26Z",
  "linkedAccountId": "89482cdb6215eba4a2b85ebf13c2973d",
  "parentWalletId": "333ddfe8-cf51-4baa-9775-f315f1d05b3f",
  "linkedAccountCurrency": "BUSD",
  "createdAt": "2023-11-24T12:10:26Z",
  "limits": {
    "dailyPurchase": 10000,
    "dailyWithdrawal": 350,
    "dailyInternetPurchase": 10000,
    "dailyContactlessPurchase": 190,
    "weeklyPurchase": 15000,
    "weeklyWithdrawal": 3000,
    "weeklyInternetPurchase": 15000,
    "weeklyContactlessPurchase": 200,
    "monthlyPurchase": 15000,
    "monthlyWithdrawal": 3000,
    "monthlyInternetPurchase": 15000,
    "monthlyContactlessPurchase": 200,
    "transactionPurchase": 10000,
    "transactionWithdrawal": 350,
    "transactionInternetPurchase": 10000,
    "transactionContactlessPurchase": 50,
    "dailyOverallPurchase": 10000,
    "weeklyOverallPurchase": 10000,
    "monthlyOverallPurchase": 10000,
    "dailyContactlessPurchaseAvailable": 190,
    "dailyInternetPurchaseAvailable": 10000,
    "dailyOverallPurchaseAvailable": 10000,
    "dailyPurchaseAvailable": 10000,
    "dailyWithdrawalAvailable": 350,
    "monthlyContactlessPurchaseAvailable": 200,
    "monthlyInternetPurchaseAvailable": 15000,
    "monthlyOverallPurchaseAvailable": 10000,
    "monthlyPurchaseAvailable": 15000,
    "monthlyWithdrawalAvailable": 3000,
    "weeklyContactlessPurchaseAvailable": 200,
    "weeklyInternetPurchaseAvailable": 15000,
    "weeklyOverallPurchaseAvailable": 10000,
    "weeklyPurchaseAvailable": 15000,
    "weeklyWithdrawalAvailable": 3000
  }
}