Skip to main content

get_notification_list

Get all scheduled notification configurations for this tenant. Notifications send items matching conditions to user groups, email, Slack, Teams, or HTTP endpoints at configured intervals.
Property
Read-onlyYes

Parameters

None.

Returns

A list of ConfigNotification objects with notification details including ID, name, description, interval, and active status.

create_notification

Create a new scheduled notification configuration.
Property
Read-onlyNo

Parameters

ParameterTypeRequiredDefaultDescription
namestringYesNotification name.
descriptionstringNoNotification description.
intervalintNo180Interval in minutes between notifications (default 3 hours).
activeboolNotrueWhether the notification is active.

Returns

The created ConfigNotification. Requires super admin.

update_notification

Update an existing notification configuration. Only provided fields are updated.
Property
Read-onlyNo

Parameters

ParameterTypeRequiredDescription
notificationIdstringYesThe notification ID. Use get_notification_list.
namestringNoNew notification name.
descriptionstringNoNew description.
intervalintNoNew interval in minutes.
activeboolNoEnable or disable the notification.

Returns

The updated ConfigNotification. Requires super admin.

delete_notification

Delete a notification configuration.
Property
Read-onlyNo

Parameters

ParameterTypeRequiredDescription
notificationIdstringYesThe notification ID. Use get_notification_list.

Returns

A confirmation message. Requires super admin.