Webhooks

Announcement Events

LifeLoop emits an announcement event whenever a facility-wide or audience-scoped announcement is delivered to residents or connections.

Events

Event typeTriggered when
announcement.sentAn announcement is sent to its recipients

What to do after receiving this event

  1. Verify the X-LifeLoop-Signature header.
  2. Read resourceId from the payload — this is the announcementId.
  3. Call GET /api/v1/{tenant}/announcements/{resourceId} to fetch the full object.
  4. Update your local data store.
  5. 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"