ProviderNotificationConfig
Configuration for staff notification emails on a service, including which notification types are enabled and who receives them.
additional_recipientsstring<email>[]required
Additional email addresses that receive staff notification emails for this service.
notify_providerbooleanrequired
Whether the assigned provider receives notification emails for this service.
types object[]required
Array of enabled staff notification types for the service.
Array [
typestringrequired
The notification type.
Possible values: [new_appointment, rescheduled, canceled]
]
ProviderNotificationConfig
{
"additional_recipients": [
"admin@example.com"
],
"notify_provider": true,
"types": [
{
"type": "new_appointment"
}
]
}