Hosted sessions
Hosted sessions are the simplest solution for authenticating transactions with 3D Secure.
Start a session and then redirect the customer using the link in the response. We'll gather the necessary payment, device and cardholder data and take care of the rest.
Hosted sessions are suitable for authentications initiated from browsers only.
Step 1: Request a session
To begin, make a session request.
Endpoints
For the full API specification, see the API reference.
https://api.checkout.com/sessions
Additional parameters
To increase the likelihood of frictionless authentication, add additional data fields when requesting a session.
Request example
{"source": {"type": "card","number": "4485040371536584","expiry_month": 1,"expiry_year": 2030},"amount": 100,"currency": "USD","authentication_type": "regular","authentication_category": "payment","challenge_indicator": "no_preference","reference": "ORD-5023-4E89","transaction_type": "goods_service","shipping_address": {"address_line1": "Checkout.com","address_line2": "90 Tottenham Court Road","city": "London","state": "UK","zip": "W1T 4TJ","country": "GB"},"completion": {"type": "hosted","success_url": "http://example.com/sessions/success","failure_url": "http://example.com/sessions/fail"}}
The response
You should receive a 202 - Accepted
response with a _links.redirect
link. For the full API specification, see the API reference.
Field name | Description |
---|---|
string | The unique session identifier. |
string | The transaction identifier. This needs to be provided when communicating directly with the issuing bank's access control server (ACS). |
integer | The payment amount. |
string | The three-letter ISO currency code. |
string | Indicates the type of payment this session is for. |
string | Indicates the category of the authentication request. |
string | The status of the session. Should be |
array | Specifies what action to take to complete the session. For example: |
string | The 3DS version used for authentication. |
string | A reference you can later use to identify this payment, such as an order number. |
object | The links related to the session. |
object | The link where the cardholder should be redirected to after authentication. |
object | The URL of the session. |
Response example
{"id": "sid_y3oqhf46pyzuxjbcn2giaqnb441","transaction_id": "9aea641d-0549-4222-9ca9-d90b43a4f38c","amount": 120,"currency": "USD","authentication_type": "regular","authentication_category": "payment","status": "pending","next_actions": ["redirect_cardholder"],"protocol_version": "2.2.0","reference": "ORD-5023-4E89","_links": {"redirect": {"href": "http://3ds2.checkout.com/interceptor/sid_y3oqhf46pyzuxjbcn2giaqnb44"},"self": {"href": "https://api.checkout.com/sessions/sid_y3oqhf46pyzuxjbcn2giaqnb441"}}}
Step 2: Redirect the customer
Redirect the customer using the _links.redirect
URL you received in the response.
In the background, our Sessions API will then gather the device data, perform a challenge (if required), and authenticate the payment. After authentication is completed, your customer will be redirected to your success_url
or failure_url
. You can now continue to authorize the payment via our Payments API.
If the authentication is approved or attempted, the customer will be redirected to your success URL. All other authentication results will redirect the customer to your failure URL.
Session properties
Session statuses
Below are the possible values of the status
field, which tell you the current status of the session.
Status | Description |
---|---|
| Authentication has been requested and the session has been started. The session |
| The 3DS server has updated the authentication with channel data collected by the SDKs and has created and sent an authentication request to the directory server. The access control server is now evaluating the data to decide whether to authenticate the transaction (frictionless) or challenge it. |
| The payment has been successfully authenticated (frictionless or challenged). |
| The payment has not been successfully authenticated, because the access control server could not be reached, but proof of the attempted authentication is provided (frictionless). |
| Authentication failed because of technical problems with the directory server or the issuer's access control server. |
| The transaction was not authenticated. The issuer denied the transaction. |
| The transaction was rejected. The issuer is rejecting the authentication and requests that authorisation not be attempted. |
| Authentication has been requested but the issuer requires that the cardholder be presented with a challenge. |
| Authentication has been started and challenged, but the cardholder did not complete the challenge. |
| Authentication has been started but the channel data could not be collected, meaning an authentication request was not created. |
Next actions
Below are the possible values for the next_actions
field. When present, they identify what action to take in order to complete the session.
Session type | Action | Description | Channel |
---|---|---|---|
Hosted |
| Redirect the customer so we can handle all the other necessary actions (collect channel data, issuer fingerprint, and challenge) for you. | Browser only |
Hosted and non-hosted |
| No further actions are required. You can complete the session. | Browser and app |
Additional authentication data
When requesting a session, you can add additional data fields to increase the chances of a frictionless authentication. Below is a summary of the optional data you can add to your request.
Type of data | Description and examples |
---|---|
Client user data | Data that supports the specific authentication and information about the authentication method used.
|
Prior transaction information | For returning users and recurring transactions, gather and submit data with each following transaction.
|
Address match | Indicates whether the cardholder's shipping and billing address are the same. |
Cardholder account / user information | Information about the cardholder and their account on your platform.
|
User purchase history | Details of the cardholder's purchase history.
|
Shipping address usage | Information about the use of the shipping address.
|
Suspicious account activity | Indicates whether you've experienced any suspicious activity on the cardholder's account. |
Cardholder information | Additional information you want to provide about the cardholder and their account with you. |
Cardholder email address | The email address associated with the cardholder's account. |
Cardholder shipping address | The cardholder's full shipping address. |
Shipping method | Indicate the shipping method being used for the order, or flag non-shippable items, like digital goods.
|
Delivery information | Information about the delivery, like the delivery email address or delivery timeframe. |