Webhooks
Announcement Events
LifeLoop emits an announcement event whenever a facility-wide or audience-scoped announcement is delivered to residents or connections.
Events
| Event type | Triggered when |
|---|---|
| announcement.sent | An announcement is sent to its recipients |
What to do after receiving this event
- Verify the
X-LifeLoop-Signatureheader. - Read
resourceIdfrom the payload — this is theannouncementId. - Call
GET /api/v1/{tenant}/announcements/{resourceId}to fetch the full object. - Update your local data store.
- Return
HTTP 200.
Sample payloadannouncement.sent.json
{
"eventId": "evt-a1b2c3d4-0000-0000-0000-000000000001",
"eventType": "announcement.sent",
"tenant": "sunrise-001",
"occurredAt": "2026-06-18T10:30:00Z",
"resourceId": "ann-001"
}Fetch the full objectbash
curl https://api.lifeloop.com/api/v1/sunrise-001/announcements/ann-001 \
-H "Authorization: Bearer YOUR_SERVICE_TOKEN"