{ "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" } }