Auth0 · Schema

ActionSecretRequest

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string The name of the particular secret, e.g. API_KEY.
value string The value of the particular secret, e.g. secret123. A secret's value can only be set upon creation. A secret's value will never be returned by the API.
View JSON Schema on GitHub

JSON Schema

auth0-actionsecretrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionSecretRequest",
  "title": "ActionSecretRequest",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the particular secret, e.g. API_KEY.",
      "default": "mySecret"
    },
    "value": {
      "type": "string",
      "description": "The value of the particular secret, e.g. secret123. A secret's value can only be set upon creation. A secret's value will never be returned by the API.",
      "default": "mySecretValue"
    }
  }
}