v1

latestOpenAPI 3.1.0UNLICENSED2026-07-2613101.1 MB
Simulations

Simulate a 3DS auth request

Simulates a card 3DS auth request.

This endpoint is for testing purposes only and won't work in production.

post/cards/simulations/3DSAuthRequest

Query parameters

accountIdstring required

The ID of the account to work with.

Example:F50091

Request body

cardIdstring uuid required

The ID of the card to work with.

amountnumber required

Contains information about how the payment is being made.

currencyCodenumber required

ISO 4217 three-digit currency code of the payment or purchased gift card.

subType'PURCHASE' | 'ACCOUNT_VERIFICATION' | 'ACCOUNT_FUNDING' | 'QUASI_CASH' | 'PREPAID_ACTIVATION_AND_LOAD' nullable

Identifies the type of transaction being authenticated.

transactionType'PAYMENT' | 'NON_PAYMENT'

Identifies the category of the message for a specific use case.

Example request

{
  "cardId": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd",
  "amount": "10",
  "currencyCode": 826,
  "subType": "PURCHASE",
  "transactionType": "PAYMENT",
  "cardAcceptor": {
    "name": "John Smith"
  }
}

Response

OK

successboolean required

Example response

{
  "success": true
}