Skip to main content
GET
/
authentications
Get authentications
curl --request GET \
  --url https://sandbox.hellgate.io/authentications \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "7dcb4365-a948-4b41-a2d2-a7bffa2d3994",
      "amount": 1000,
      "currency_code": "EUR",
      "action_requirement": {
        "type": "use_sdk",
        "session_id": "d5b8e449-13da-4594-bf00-643146fb35d1"
      },
      "created_at": "2023-10-10T00:00:00Z",
      "challenge_preference": "CHALLENGE",
      "purchase_date": "20241010000000",
      "use_case": "ONE_OFF",
      "source": {
        "type": "token",
        "token_id": "71820e49-6822-4df1-8db5-d245456172b6"
      },
      "status": "PROCESSING"
    }
  ],
  "pagination": {
    "current_page": 1,
    "page_size": 1,
    "total_items": 1,
    "total_pages": 1
  }
}
Beta Feature

Authorizations

X-API-Key
string
header
required

Query Parameters

type
string

Parameter to filter the authentication types

limit
integer

The desired amount of records per page. The parameter defaults to 50 if it is omitted and has a maximum of 500.

Required range: 1 <= x <= 500
page
integer

The desired number of the page to return.

Required range: x >= 1

Response

Success response

data
object[]
pagination
object

The meta-data describing lists of data from the Commerce API. The pages are indexed from 1 up to the total_pages.

Example:
{
"current_page": 1,
"page_size": 1,
"total_items": 1,
"total_pages": 1
}