v3

latestOpenAPI 3.0.1raw.githubusercontent.com2025-11-0572035.1 KB
public

Get token from AAD

Returns a token direct from Azure AD using Client Credentials.

post/auth/client_credentials

Request body

client_idstring required
client_secretstring required

Response

OK

token_typestring
expires_ininteger
ext_expires_ininteger
access_tokenstring

Example response

{
  "token_type": "Bearer",
  "expires_in": 3599,
  "ext_expires_in": 3599,
  "access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSU"
}