/notifications

POST https://tezzela.com/api/v1/dasboards/delete

Description

This endpoint sends a notification to a specific user (dashboard viewer) identified by their email address.

These notifications are displayed directly in the mobile app used by the recipient, making it ideal for delivering real-time alerts, reminders, or key updates related to the dashboards they are viewing.

The request must be a POST request with a JSON body containing the following fields:

  • to: The recipient's email address (the one used to view dashboards).

  • title: A short title for the notification.

  • message: The main content of the notification.

This is useful for:

  • Notifying users about important events or milestones.

  • Sending real-time alerts based on IoT data or business metrics.

  • Sharing contextual updates with users while they view dashboards on their mobile devices.

Request Body

{
    "data": {
        "to": "[email protected]",
        "title": "Monthly goal",
        "message": "We have achieved the monthly sales goal"
    }
}

Response

Last updated