curl --request POST \
--url https://app.tagadapay.com/api/public/v1/threeds/challenge-result \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sessionId": "<string>"
}
'{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}After a 3DS challenge has been completed by the cardholder, retrieve the final authentication result. Returns updated 3DS values (ECI, CAVV, transStatus, etc.).
Requires: org:admin role
curl --request POST \
--url https://app.tagadapay.com/api/public/v1/threeds/challenge-result \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sessionId": "<string>"
}
'{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}