/
/Publicauth API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 12m ago · Updated 1y ago
Auth11
  • getLook up the account ID for a token.
  • putUpdates the description of an existing dev token.
  • postGenerate and return a new token for the given gateway account ID.
  • getRetrieves generated tokens for service and mode.
  • deleteRevokes the supplied token for this service and mode
  • deleteRevokes all tokens associated with a service and mode. It is not possible to tell whether the service actually exists (in connector), so this method currently does not return a 404.
  • getGet a token by service, mode and token link.
  • getRetrieves generated tokens for gateway account.
  • deleteRevokes the supplied token for this account
  • deleteRevokes all tokens associated with a gateway account. It is not possible to tell whether the gateway account actually exists (in connector), so this method currently does not return a 404.
  • getGet a token by gateway account id and token link.
Other1
    Auth

    Look up the account ID for a token.

    get/v1/api/auth

    Response

    OK

    account_idstring
    service_external_idstring
    service_mode'LIVE' | 'TEST'
    token_linkstring
    token_type'CARD' | 'DIRECT_DEBIT'

    Example response

    {
      "account_id": "1234",
      "service_external_id": "cd1b871207a94a7fa157dee678146acd",
      "service_mode": "LIVE",
      "token_link": "550e8400-e29b-41d4-a716-446655440000",
      "token_type": "CARD"
    }

    Changes