Auth0 · Schema

ClientCredentials

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
grant_type string Denotes the flow you are using. For Client Credentials, use client_credentials.
client_id string Your application's Client ID.
client_secret string Your application's Client Secret.
audience string The unique identifier of the target API you want to access.
View JSON Schema on GitHub

JSON Schema

auth0-clientcredentials-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientCredentials",
  "title": "ClientCredentials",
  "type": "object",
  "required": [
    "grant_type",
    "client_id",
    "client_secret",
    "audience"
  ],
  "properties": {
    "grant_type": {
      "type": "string",
      "description": "Denotes the flow you are using. For Client Credentials, use client_credentials.",
      "enum": [
        "client_credentials"
      ]
    },
    "client_id": {
      "type": "string",
      "description": "Your application's Client ID."
    },
    "client_secret": {
      "type": "string",
      "description": "Your application's Client Secret."
    },
    "audience": {
      "type": "string",
      "description": "The unique identifier of the target API you want to access."
    }
  }
}