Auth0 · Schema

FlowActionSendgridSendEmailParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
from object
personalizations array
View JSON Schema on GitHub

JSON Schema

auth0-flowactionsendgridsendemailparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionSendgridSendEmailParams",
  "title": "FlowActionSendgridSendEmailParams",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "connection_id",
    "personalizations",
    "from"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "from": {
      "$ref": "#/components/schemas/FlowActionSendgridSendEmailParamsPerson"
    },
    "personalizations": {
      "type": "array",
      "minItems": 1,
      "items": {}
    }
  }
}