Auth0 · Schema

EmailProviderCredentials

Credentials required to use the provider.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
api_user string API User.
region string AWS or SparkPost region.
smtp_host string SMTP host.
smtp_port integer SMTP port.
smtp_user string SMTP username.
View JSON Schema on GitHub

JSON Schema

auth0-emailprovidercredentials-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailProviderCredentials",
  "title": "EmailProviderCredentials",
  "type": "object",
  "description": "Credentials required to use the provider.",
  "additionalProperties": false,
  "properties": {
    "api_user": {
      "type": "string",
      "description": "API User."
    },
    "region": {
      "type": "string",
      "description": "AWS or SparkPost region."
    },
    "smtp_host": {
      "type": "string",
      "description": "SMTP host."
    },
    "smtp_port": {
      "type": "integer",
      "description": "SMTP port."
    },
    "smtp_user": {
      "type": "string",
      "description": "SMTP username."
    }
  }
}