Retrieves the `threeDS2Result` after doing a 3D Secure 2 authentication only.
POST
/retrieve3ds2Result
Retrieves the threeDS2Result
after doing a 3D Secure 2 authentication only.
Body
-
merchantAccount string Required
The merchant account identifier, with which you want to process the transaction.
-
pspReference string Required
The pspReference returned in the /authorise call.
Responses
-
• 200 object
OK - the request has succeeded.
-
• 400
Bad Request - a problem reading or understanding the request.
-
• 401
Unauthorized - authentication required.
-
• 403
Forbidden - insufficient permissions to process the request.
-
• 422
Unprocessable Entity - a request validation error.
-
• 500
Internal Server Error - the server could not process the request.
POST /retrieve3ds2Result
curl \
-X POST https://pal-test.adyen.com/pal/servlet/Payment/v40/retrieve3ds2Result \
-H "Content-Type: application/json" \
-d '{"merchantAccount":"string","pspReference":"string"}'
Request example
{
"merchantAccount": "string",
"pspReference": "string"
}
Response example (200)
{
"threeDS2Result": {
"authenticationValue": "string",
"dsTransID": "string",
"eci": "string",
"threeDSServerTransID": "string",
"timestamp": "string",
"transStatus": "string",
"transStatusReason": "string"
}
}