v1

latestOpenAPI 3.0.32026-07-2485236250.4 KB
Cards/3DS

Get active requests

Retrieves active 3DS requests that need to be either approved or declined

get/api/v1/cards/3ds/requests

Response

OK

amountstring required

Amount of the transaction

card_idstring required

Id of the card for which this transaction is being confirmed

card_last_4string required

Last 4 digits of the card used for the transaction

currencystring required

Currency of the transaction

merchant_namestring required

Name of the merchant where the transaction was made

ownerstring required

Deprecated: still populated for backward compatibility, but consumers should read user_address — this field carries the user's EOA, which is now exposed as user_address.

transaction_idstring required

Id of transaction on the issuer side which is being confirmed

user_addressstring required

UserAddress is the EOA of the user who owns the card. Preferred field; owner mirrors the same value for backward compatibility.

Example response

[
  {
    "amount": "100.00",
    "card_id": "00000000-0000-0000-0000-000000000001",
    "card_last_4": "1234",
    "currency": "USD",
    "merchant_name": "Amazon",
    "owner": "0x0000000000000000000000000000000000000000",
    "transaction_id": "00000000000000000000000000000001",
    "user_address": "0x0000000000000000000000000000000000000000"
  }
]