Properties
| Name | Type | Description |
|---|---|---|
| allowed_recipients | array | A comma-separated list of quoted email addresses that can receive notification emails from this integration. |
| default_recipients | array | A comma-separated list of default recipients for messages sent with this integration. |
| default_subject | string | the default subject line for messages sent with this integration. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "NotificationEmail",
"type": "object",
"properties": {
"allowed_recipients": {
"type": "array",
"description": "A comma-separated list of quoted email addresses that can receive notification emails from this integration."
},
"default_recipients": {
"type": "array",
"description": "A comma-separated list of default recipients for messages sent with this integration."
},
"default_subject": {
"type": "string",
"description": "the default subject line for messages sent with this integration."
}
}
}