Skip to main content
GET
/
card-3ds-challenges
/
{challengeId}
Get 3DS challenge
curl --request GET \
  --url https://sandbox.api.reap.global/card-3ds-challenges/{challengeId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Reap-Version: <reap-version>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "cardId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "PENDING",
  "merchant": {
    "name": "<string>",
    "countryCode": "<string>"
  },
  "transaction": {
    "amount": "<string>",
    "currency": "<string>",
    "timestamp": "<string>"
  },
  "expiresAt": "<string>"
}

Authorizations

Authorization
string
header
required

API key as Bearer token

Headers

Reap-Version
enum<string>
required

API version (YYYY-MM-DD)

Available options:
2025-02-14
Example:

"2025-02-14"

Path Parameters

challengeId
string<uuid>
required

Response

3DS challenge response

id
string<uuid>
required

Unique 3DS challenge identifier

cardId
string<uuid>
required

ID of the card this challenge is for

status
enum<string>
required

Challenge status

Available options:
PENDING,
APPROVED,
REJECTED,
EXPIRED
Example:

"PENDING"

merchant
object
required

Merchant details

transaction
object
required

Transaction details

expiresAt
string
required

ISO 8601 timestamp when this challenge expires

Example:

"2024-01-15T10:35:00Z"