v1

latestOpenAPI 3.0.02026-07-2412592575.3 KB
auth

Retrieve an authorisation token

Requires Basic auth header to be sent with the client-id & client-secret base64 encoded

post/oidc/token

Response

A successful token retrieval response

access_tokenstring required

Access Token

expires_ininteger required

Token Expiry

token_typestring required

Type of token granted

scopestring

The granted scopes

Example response

{
  "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlRxVk1laV9XdUtqZW5HWlJUbnJpeUxXRnZuS2tzTjNvLWFuWXBqS0JEbVUifQ",
  "expires_in": 1616090946,
  "token_type": "Bearer",
  "scope": "id:1ffe704d39629a929c8e293880fb449a openid"
}