Hi All,
I have notifications enabled for multiple devices, such as geofence exits and speed exceedances. These notifications are sent via email, complete with event names and details.
Additionally, I have ClickSend integrated to receive SMS alerts when events trigger. However, I'm unsure how to configure the SMS HTTP template. Do I need to create a separate template for each event? Also, will I need to replicate the template for unique phone numbers if I have multiple devices?
Please see a snippet of the template below; I only receive SMS messages containing a string value as shown in the body.
<entry key='sms.http.template'>
{
"messages": [
{
"source": "MyFleet",
"body": "{event}",
"to": "+xxxxx"
},
{
"source": "Traccar",
"body": "{event}",
"to": "+xxxxx"
}
]
}
There's already a separate message template for each event type.
Hi All,
I have notifications enabled for multiple devices, such as geofence exits and speed exceedances. These notifications are sent via email, complete with event names and details.
Additionally, I have ClickSend integrated to receive SMS alerts when events trigger. However, I'm unsure how to configure the SMS HTTP template. Do I need to create a separate template for each event? Also, will I need to replicate the template for unique phone numbers if I have multiple devices?
Please see a snippet of the template below; I only receive SMS messages containing a string value as shown in the body.