3D Secure payments with a third-party provider
To benefit from a streamlined integration process, we recommend using Checkout.com to authenticate 3D Secure payments. If you wish you to use a third-party provider, you will need to include additional fields in your request.
The request
Use the details below to set up your request.
Endpoints
Live
Sandbox
Header and path parameters
Header | Value |
---|---|
|
|
|
|
Additional parameters
Parameter | Description |
---|---|
3ds Object required | Information required for 3D Secure payments. |
| Whether to process this payment as a 3D Secure. Set this to |
| The Electronic Commerce Indicator security level associated with the token. Required unless the |
| Base-64 cryptographic identifier used by card schemes to validate the token verification result. Required unless the |
| The 3D Secure transaction identifier. |
| Indicates the version of 3D Secure used for authentication. Defaults to |
Request example
This code snippet is an example of the request body — not all fields are required, so you can custom build your request based on the information you need.
{
"source": {
"type": "card",
"number": "5436031030606378",
"expiry_month": 12,
"expiry_year": 2025,
},
"amount": 257,
"currency": "USD",
"3ds": {
"enabled": true,
"eci": "06",
"cryptogram": "123feb70-d16b-4da6-b07f-98c0",
"xid": "79f6205c-ff5c-4a4c-8fca-90f67f3a6470",
"version": "2.0.1"
}
}
The response
Use the approved
field to check whether or not the authorization was successful ("approved": true
). If your authorization was not successful, it's possible the payment used an invalid/expired card, or a valid card with an insufficient available balance.
If you received a 202
response, the payment requires a redirect. For example, if the payment is 3D Secure.
If the card scheme provided us with an
eci
value, it will be included in the response. The value indicates the security level that the card scheme decided to authorize the payment with.
Can we help?
Thanks for using Checkout.com. If you need any help or support, then message our support team at [email protected].
Updated 5 months ago