v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB

Update Card Settings

Turn on/off contactless, internet purchases and withdrawals

patch/card/security

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
addressobject
isEnrolledFor3dSecureboolean
isCard3dSecureActivatedboolean
activatedAtstring
linkedAccountIdstring
parentWalletIdstring
linkedAccountCurrencystring
createdAtstring

Example response

{
  "name": "John Doe",
  "id": "d33c677a-8a2b-41ca-8109-d4572df1fd97",
  "type": "VIRTUAL",
  "maskedCardNumber": "474367******5806",
  "expiryData": "2025-10-31T23:59:59Z",
  "status": "ACTIVE",
  "isEnrolledFor3dSecure": true,
  "isCard3dSecureActivated": true,
  "security": {
    "withdrawalEnabled": true,
    "internetPurchaseEnabled": true,
    "overallLimitsEnabled": true
  },
  "activatedAt": "2023-10-20T17:11:55Z",
  "linkedAccountId": "ca38f2231921c7209c081d8a7227df7f",
  "parentWalletId": "d6f4a158-b9a4-48ea-8700-c0e3aa77cf13",
  "linkedAccountCurrency": "EUR",
  "createdAt": "2023-10-20T17:11:55Z"
}