curl --request POST \
--url https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/cards/3ds/confirm \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"authId": "tds_a1b2c3d4",
"action": "approve"
}
'{
"success": true,
"data": {
"message": "3DS challenge confirmed",
"result": {
"status": "approved",
"authId": "tds_a1b2c3d4",
"cardId": "crd_9f2a1c4b"
}
}
}{
"success": false,
"code": "VALIDATION_ERROR",
"message": "newPin must be 4 digits"
}{
"success": false,
"code": "UNAUTHORIZED",
"message": "Unauthorized"
}{
"success": false,
"code": "CARD_NOT_FOUND",
"message": "Card not found"
}3DS
Confirm a 3DS challenge
Approves or rejects a pending 3D Secure challenge so the card transaction can proceed or be declined.
POST
/
v1
/
customers
/
{customerId}
/
accounts
/
{accountId}
/
cards
/
3ds
/
confirm
curl --request POST \
--url https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/cards/3ds/confirm \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"authId": "tds_a1b2c3d4",
"action": "approve"
}
'{
"success": true,
"data": {
"message": "3DS challenge confirmed",
"result": {
"status": "approved",
"authId": "tds_a1b2c3d4",
"cardId": "crd_9f2a1c4b"
}
}
}{
"success": false,
"code": "VALIDATION_ERROR",
"message": "newPin must be 4 digits"
}{
"success": false,
"code": "UNAUTHORIZED",
"message": "Unauthorized"
}{
"success": false,
"code": "CARD_NOT_FOUND",
"message": "Card not found"
}Authorizations
The user's access token. The program and environment come from the token.
Path Parameters
The customer's id.
The account the card belongs to. A customer can have several accounts; cards are issued against one.
Body
application/json
⌘I