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

Notification/update

What it does: Acknowledges that your system has processed a notification event.

When to call it: After handling each event returned by Notifications/list.

POST /notifications/update/event/<eventid>

Example request

curl -i -X POST \
  -H "X_API_KEY: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"Acknowledged": true, "ProcessedAt": "2025-08-01 09:00:00"}' \
  https://api-staging.rentalcover.com/notifications/update/event/evt_71jea4sjl778s24

Request Parameters

Parameter
Required?
Description

eventid (URL)

Required

The EventId from the Notifications/list response.

Acknowledged

Required

true if your system processed the event successfully. false if processing failed.

ProcessedAt

Required

Timestamp of when your system processed the event. Format: yyyy-mm-dd hh:mm:ss.

Response

Returns Status string on ok.

{
   "Status":"ok"
}

Last updated

Was this helpful?