v1
latestOpenAPI 3.1.02026-08-063776831.4 MBAuth
Client Credentials Exchange
Performs OAuth2 client credentials grant flow and returns an access token. Uses configured audience.
post/auth/client-credentials
Headers
tenant-idstring
use "default" as tenant-id
Request body
Example request
{
"clientId": "your-client-id",
"clientSecret": "your-client-secret"
}Response
Authentication successful
Example response
{
"accessToken": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"expiresIn": 86400,
"tokenType": "Bearer"
}