curl --request POST \
--url https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/cards/auth/confirm \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"authId": "auth_7e3a1c9d",
"action": "accepted"
}
'{
"success": true,
"status": "customer-accepted",
"message": "Authentication accepted"
}{
"success": false,
"code": "VALIDATION_ERROR",
"message": "newPin must be 4 digits"
}{
"success": false,
"code": "CARD_NOT_FOUND",
"message": "Card not found"
}Cardholders
Confirm a holder authentication
Accepts or cancels a pending cardholder authentication challenge (used in 3DS-related step-up flows for cardholders).
POST
/
v1
/
customers
/
{customerId}
/
accounts
/
{accountId}
/
cards
/
auth
/
confirm
curl --request POST \
--url https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/cards/auth/confirm \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"authId": "auth_7e3a1c9d",
"action": "accepted"
}
'{
"success": true,
"status": "customer-accepted",
"message": "Authentication accepted"
}{
"success": false,
"code": "VALIDATION_ERROR",
"message": "newPin must be 4 digits"
}{
"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