Notification center
To send notifications, a notification configuration with one or more channels must be created. It is recommended to define different channels for different receiver groups or facilities.
Create a notification configuration at the network level
Create a configuration at the network level to receive notifications globally, i.e., for all events regardless of the facility they apply to.
PUT https://{YOUR-TENANT-NAME}.api.fulfillmenttools.com/api/configurations/notifications{
"channels": [
{
"enabled": true,
"events": [
"ROUTING_PLAN_NOT_ROUTABLE"
],
"receiver": [
{
"email": "[email protected]",
"language": "de_DE"
}
],
"type": "EMAIL"
}
],
"version": 1
}Create a notification configuration at the facility level
Create a configuration at the facility level to receive notifications only for specific facilities, such as for orders that are routed to a specific facility.
Create a notification configuration for time-triggered reroute
A notification can be configured to inform a supervisor before a time-triggered reroute due to inactivity occurs.
Define when the notification is triggered
In this example, a task is rerouted after 120 minutes of inactivity. A notification is sent 30 minutes before the reroute occurs, which is after 90 minutes of inactivity.
Configure the notification channel
Last updated