v1

latestOpenAPI 3.0.02026-07-24161168406.5 KB
Tokens

Creating an api token

This token is used for Admission API authentication

post/auth/token

Request body

clientIdstring

Company client id

secretstring

Company secret

Example request

{
  "clientId": "public-api-<companyId>",
  "secret": "<unique-secret>"
}

Response

Successful operation

accessTokenstring

JWT Bearer token

expiresInnumber

Token expiration timestamp

typestring

Token type

Example response

{
  "type": "Bearer"
}