Skip to main content
GET
/
credentials
Get credentials
curl --request GET \
  --url https://sandbox.hellgate.io/credentials \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "type": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "cardholder_name": "<string>",
      "expiry_month": 123,
      "expiry_year": 123,
      "masked_account_number": "<string>",
      "issuer": {
        "account": {
          "funding": "credit",
          "country_code": "<string>",
          "currency": "<string>"
        },
        "identification_number": "<string>",
        "name": "<string>",
        "scheme": "<string>",
        "segment": "consumer"
      }
    }
  ],
  "pagination": {
    "current_page": 1,
    "page_size": 1,
    "total_items": 1,
    "total_pages": 1
  }
}

Authorizations

X-API-Key
string
header
required

Query Parameters

limit
integer
default:50

The desired amount of records per page.

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
}