Skip to main content
POST
/
card-3ds-challenges
/
{challengeId}
/
respond
Respond to 3DS challenge
curl --request POST \
  --url https://sandbox.api.reap.global/card-3ds-challenges/{challengeId}/respond \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Reap-Version: <reap-version>' \
  --data '
{
  "approve": true
}
'
{
  "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

Body

Request body for responding to a 3DS challenge

approve
boolean
required

Whether to approve or reject the 3DS challenge

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"