Auth0 · Example Payload

Auth0 Oauth Token Client Credentials Example

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Auth0 Oauth Token Client Credentials Example is an example object payload from Auth0, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://your-tenant.auth0.com/oauth/token",
    "headers": {"Content-Type": "application/json"},
    "body": {
      "grant_type": "client_credentials",
      "client_id": "{AUTH0_CLIENT_ID}",
      "client_secret": "{AUTH0_CLIENT_SECRET}",
      "audience": "https://your-tenant.auth0.com/api/v2/"
    }
  },
  "response": {
    "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6Ii4uLiJ9...",
    "token_type": "Bearer",
    "expires_in": 86400,
    "scope": "read:users update:users"
  }
}