Auth0 · Schema
UpdateEmailProviderResponseContent
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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateEmailProviderResponseContent",
"title": "UpdateEmailProviderResponseContent",
"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"
}
}
}