Auth0 · Schema

FlowActionAuth0MakeCallParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
from string
to string
message string
custom_vars object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionauth0makecallparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionAuth0MakeCallParams",
  "title": "FlowActionAuth0MakeCallParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "to",
    "message"
  ],
  "properties": {
    "from": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "to": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "message": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1024
    },
    "custom_vars": {
      "$ref": "#/components/schemas/FlowActionAuth0MakeCallParamsCustomVars"
    }
  }
}