v1

latestOpenAPI 3.1.02026-07-2489171167.4 KB
Authentication

Generate Access Token

Obtain a temporary access token for authenticating API requests. To generate the token, provide your Client ID and Client Secret obtained from the Generate App Key endpoint.

post/access-tokens

Headers

x-sysaid-accountidstring required

SysAid account identifier

SysAid account identifier

Request body

clientIdstring required

The client ID for authentication

clientSecretstring required

The client secret for authentication

Response

Access token generated successfully

tokenstring required

JWT access token

tokenTypestring required

Token type

expiresIninteger required

Token expiration time in seconds

Example response

{
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "tokenType": "Bearer",
  "expiresIn": 3600
}