Client Credentials Flow
To obtain an access token using Client Credentials Flow send a POST request to the [ClientId]/Token endpoint:
Content-Type: application/x-www-form-urlencoded
https://[CGiXAuthServerUrl]/[ClientId]/Token
{
grant_type = "client_credentials",
scope = "[Scope]",
client_secret = "[ClientSecret]"
}
Updated 2 months ago