v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB

Activate Anonymous Card

"Anonymous" cards are physical Visa cards that are not personalized to one specific user. You may order a batch of cards and distribute these to end users who can then link these cards to an account after they have created an account.

Every "anonymous" card has a six digit reference code printed on the welcome letter inside your card carrier which the user enters into your application along with a 3DS password for that card and then this card begins to function like a regular physical card.

This is available only on production as no real cards are created on the sandbox.

NOTE: You can override only one delivery fee at a time.

post/card/activate-anonymous

Headers

api-keystring required
Authorizationstring required

Request body

userIdstring required

Unique Id of the user

referenceCodestring required

6 digit code

accountIdToLinkstring required

specifying which account this card is to be linked to.

threeDSecurePasswordstring required

A strong password used to authenticate this card on online transactions - 8-36 characters tested against the regex /^[A-Za-z0-9!“#;:?\()+=/\&,.[]{}]$/

Response

200

idstring
userIdstring
typestring
maskedCardNumberstring
expiryDatastring
expiryDatestring
statusstring
isEnrolledFor3dSecureboolean
isCard3dSecureActivatedboolean
activatedAtstring
linkedAccountIdstring
parentWalletIdstring
linkedAccountCurrencystring
lastLinkedAccountIdstring
createdAtstring
blockTypestring

Example response

{
  "id": "dc28a143-8def-4224-a8bb-d3a3e7031cca",
  "userId": "3ab759bf-116a-42b2-9043-622672996939",
  "type": "PHYSICAL_ANONYMOUS",
  "maskedCardNumber": "474367******8762",
  "expiryData": "2029-10-31T23:59:59Z",
  "expiryDate": "2029-10-31T23:59:59Z",
  "status": "ACTIVE",
  "isCard3dSecureActivated": true,
  "security": {
    "contactlessEnabled": true,
    "withdrawalEnabled": true,
    "internetPurchaseEnabled": true,
    "overallLimitsEnabled": true
  },
  "limits": {
    "dailyPurchase": 10000,
    "dailyWithdrawal": 350,
    "dailyInternetPurchase": 10000,
    "dailyContactlessPurchase": 10000,
    "weeklyPurchase": 15000,
    "weeklyWithdrawal": 3000,
    "weeklyInternetPurchase": 15000,
    "weeklyContactlessPurchase": 15000,
    "monthlyPurchase": 15000,
    "monthlyWithdrawal": 3000,
    "monthlyInternetPurchase": 15000,
    "monthlyContactlessPurchase": 15000,
    "transactionPurchase": 10000,
    "transactionWithdrawal": 350,
    "transactionInternetPurchase": 10000,
    "transactionContactlessPurchase": 10000,
    "dailyOverallPurchase": 10000,
    "weeklyOverallPurchase": 15000,
    "monthlyOverallPurchase": 15000,
    "dailyContactlessPurchaseAvailable": 10000,
    "dailyInternetPurchaseAvailable": 10000,
    "dailyOverallPurchaseAvailable": 10000,
    "dailyPurchaseAvailable": 10000,
    "dailyWithdrawalAvailable": 350,
    "monthlyContactlessPurchaseAvailable": 15000,
    "monthlyInternetPurchaseAvailable": 15000,
    "monthlyOverallPurchaseAvailable": 15000,
    "monthlyPurchaseAvailable": 15000,
    "monthlyWithdrawalAvailable": 3000,
    "weeklyContactlessPurchaseAvailable": 15000,
    "weeklyInternetPurchaseAvailable": 15000,
    "weeklyOverallPurchaseAvailable": 15000,
    "weeklyPurchaseAvailable": 15000,
    "weeklyWithdrawalAvailable": 3000
  },
  "activatedAt": "2024-10-31T10:54:23Z",
  "linkedAccountId": "4ea59c14765e3816f91909fe2299ea38",
  "parentWalletId": "a35421ed-e601-422a-830d-33e3fdedfccd",
  "linkedAccountCurrency": "EUR",
  "lastLinkedAccountId": "4ea59c14765e3816f91909fe2299ea38",
  "createdAt": "2024-10-18T15:05:54Z"
}