Adyen Payment API
  1. General
Adyen Payment API
  • Modifications
    • Change the authorised amount
      POST
    • Cancel an authorisation
      POST
    • Cancel or refund a payment
      POST
    • Capture an authorisation
      POST
    • Create a donation
      POST
    • Refund a captured payment
      POST
    • Cancel an authorisation using your reference
      POST
    • Cancel an in-person refund
      POST
  • General
    • Create an authorisation
      POST
    • Complete a 3DS authorisation
      POST
    • Complete a 3DS2 authorisation
      POST
    • Get the 3DS authentication result
      POST
    • Get the 3DS2 authentication result
      POST
  1. General

Get the 3DS2 authentication result

POST
/retrieve3ds2Result
Retrieves the threeDS2Result after doing a 3D Secure 2 authentication only.

Request

Body Params application/json

Examples

Responses

🟢200OK - the request has succeeded.
application/json
Body

🟠400Bad Request - a problem reading or understanding the request.
🟠401Unauthorized - authentication required.
🟠403Forbidden - insufficient permissions to process the request.
🟠422Unprocessable Entity - a request validation error.
🔴500Internal Server Error - the server could not process the request.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/retrieve3ds2Result' \
--header 'Content-Type: application/json' \
--data-raw '{
    "merchantAccount": "string",
    "pspReference": "string"
}'
Response Response Example
200 - Example 1
{
    "threeDS2Result": {
        "authenticationValue": "string",
        "cavvAlgorithm": "string",
        "challengeCancel": "01",
        "challengeIndicator": "noPreference",
        "dsTransID": "string",
        "eci": "string",
        "exemptionIndicator": "lowValue",
        "messageVersion": "string",
        "riskScore": "string",
        "threeDSServerTransID": "string",
        "timestamp": "string",
        "transStatus": "string",
        "transStatusReason": "string",
        "whiteListStatus": "string"
    }
}
Modified at 2023-08-15 08:20:06
Previous
Get the 3DS authentication result
Built with