For the complete documentation index, see llms.txt. This page is also available as Markdown.

No Signal Event

Update Low battery event

This endpoint allows you to update a no signal event associated to a tracker.

PATCH {baseUrl}/tracker/event/:eventId

Request Body

Field
Type
Required
Description

eventNotification

object

Optional notification settings for the event.

eventNotification.acceptedMediums

array

A list of notification channels and their settings.

eventNotification.status

string

Status of the notification configuration. Accepts either "inactive" or "active"

Sample Success Data

//Sample Request Body
{
    "eventNotification": { 
      "acceptedMediums": [
        {
          "channel": "email",
          "isEnabled": true,
          "defaultEmail": [ "test@gmail.com" ]
        },
        {
          "channel": "sms",
          "isEnabled": true,
          "defaultPhone": [ "+2349088888888" ]
        },
        {
          "channel": "inApp",
          "isEnabled": false
        }
      ],
      "status": "active"
    }
}

Sample Success Response

Last updated