v5

latestOpenAPI 3.0.3raw.githubusercontent.com2026-03-31102119.5 KB
service_token

Create New Service Token

post/token

Response

Service Token created

access_tokenstring required

The JWT access token

expires_ininteger

The duration in seconds the access token is valid for

refresh_tokenstring required

The JWT refresh token

refresh_expires_ininteger

The duration in seconds the refresh token is valid for

token_typestring

Bearer

not-before-policyinteger

Timestamp that indicates the time before which the JWT must not be accepted for processing

session_statestring

Session id, identifier that uniquely ties the session to the authenticated user

scopestring

Claim in a JWT defines the set of permissions or access rights granted

Example response

{
  "expires_in": 300,
  "refresh_expires_in": 1800,
  "token_type": "Bearer",
  "session_state": "ec313d7a-df9d-4390-865e-c6d606156fdc",
  "scope": "email profile"
}