Auth0 · Schema

GetEmailProviderResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string Name of the email provider. Can be `mailgun`, `mandrill`, `sendgrid`, `resend`, `ses`, `sparkpost`, `smtp`, `azure_cs`, `ms365`, or `custom`.
enabled boolean Whether the provider is enabled (true) or disabled (false).
default_from_address string Email address to use as "from" when no other address specified.
credentials object
settings object
View JSON Schema on GitHub

JSON Schema

auth0-getemailproviderresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetEmailProviderResponseContent",
  "title": "GetEmailProviderResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the email provider. Can be `mailgun`, `mandrill`, `sendgrid`, `resend`, `ses`, `sparkpost`, `smtp`, `azure_cs`, `ms365`, or `custom`.",
      "default": "sendgrid"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the provider is enabled (true) or disabled (false).",
      "default": true
    },
    "default_from_address": {
      "type": "string",
      "description": "Email address to use as \"from\" when no other address specified."
    },
    "credentials": {
      "$ref": "#/components/schemas/EmailProviderCredentials"
    },
    "settings": {
      "$ref": "#/components/schemas/EmailProviderSettings"
    }
  }
}