Auth0 · Schema

FlowActionAuth0SendEmailParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-flowactionauth0sendemailparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionAuth0SendEmailParams",
  "title": "FlowActionAuth0SendEmailParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "to",
    "subject",
    "body"
  ],
  "properties": {
    "from": {
      "$ref": "#/components/schemas/FlowActionAuth0SendEmailParamsFrom"
    },
    "to": {
      "$ref": "#/components/schemas/FlowActionAuth0SendEmailParamsTo"
    },
    "subject": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "body": {
      "type": "string",
      "minLength": 1,
      "maxLength": 102400
    },
    "custom_vars": {
      "$ref": "#/components/schemas/FlowActionAuth0SendRequestParamsCustomVars"
    }
  }
}