v1

latestOpenAPI 3.1.02026-07-242325051.4 MB
AuthenticationToken

AuthenticationTokens:Browse

Get all authentication tokens. If you do not supply a merchantCode we return the authentication tokens that are available under your own merchant registration. If you supply a merchantCode you need to have access to that merchant

get/v2/authenticationtokens

Query parameters

pageinteger

The collection page number

eqstring

Get results that equal the given value

Provides filtering based on merchant code.

{
  "eq": "M-1234-4321"
}

Response

OK

totalinteger nullable

The total items the collection contains

Example response

{
  "authenticationTokens": [
    {
      "code": "AT-1233-1322",
      "secret": "95c4ae0613c23435089dc0b480d98ce786a4e22a",
      "name": "The description of the token",
      "merchant": {
        "code": "M-1234-4321",
        "name": "GMS Demo Merchant",
        "status": "ACTIVE"
      },
      "authorisation": "specified",
      "ipFilter": {
        "type": "DENY_FROM_ALL"
      },
      "createdAt": "2024-06-04T08:15:00+01:00",
      "createdBy": "A-1234-4321",
      "modifiedAt": "2024-06-04T08:15:00+01:00",
      "modifiedBy": "A-1234-4321",
      "deletedAt": "A-1234-4321",
      "deletedBy": "A-1234-4321"
    }
  ],
  "total": 10
}