Retrieves the `threeDS2Result` after doing a 3D Secure 2 authentication only.
Retrieves the threeDS2Result
after doing a 3D Secure 2 authentication only.
Body
-
The merchant account identifier, with which you want to process the transaction.
-
The pspReference returned in the /authorise call.
Responses
-
OK - the request has succeeded.
-
Bad Request - a problem reading or understanding the request.
-
Unauthorized - authentication required.
-
Forbidden - insufficient permissions to process the request.
-
Unprocessable Entity - a request validation error.
-
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"
}
Request examples
{
"merchantAccount": "string",
"pspReference": "string"
}
Response examples (200)
{
"threeDS2Result": {
"authenticationValue": "string",
"dsTransID": "string",
"eci": "string",
"threeDSServerTransID": "string",
"timestamp": "string",
"transStatus": "string",
"transStatusReason": "string"
}
}
Response examples (200)
{
"threeDS2Result": {
"authenticationValue": "string",
"dsTransID": "string",
"eci": "string",
"threeDSServerTransID": "string",
"timestamp": "string",
"transStatus": "string",
"transStatusReason": "string"
}
}