Auth0 · Example Payload

Auth0 Authorize Pkce Example

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Auth0 Authorize Pkce 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": "GET",
    "url": "https://your-tenant.auth0.com/authorize",
    "query": {
      "response_type": "code",
      "client_id": "{AUTH0_CLIENT_ID}",
      "redirect_uri": "https://app.example.com/callback",
      "scope": "openid profile email offline_access",
      "audience": "https://api.example.com",
      "state": "n0nce_state",
      "code_challenge": "E9Melhoa2OwvFrEMTJguCHaoeK1t8URWbuGJSstw-cM",
      "code_challenge_method": "S256"
    }
  },
  "response": {
    "redirect_to": "https://app.example.com/callback?code=AUTH_CODE&state=n0nce_state"
  }
}