Webhooks
Connection Events
LifeLoop emits a connection event whenever a family member or other connection tied to a resident is added, updated, or removed.
Events
| Event type | Triggered when |
|---|---|
| connection.created | A new connection is added to a resident |
| connection.updated | A connection's details or permissions change |
| connection.removed | A connection is removed from a resident |
What to do after receiving this event
- Verify the
X-LifeLoop-Signatureheader. - Read
resourceIdfrom the payload — this is theconnectionId. - Call
GET /api/v1/{tenant}/connections/{resourceId}to fetch the full object. - Update your local data store.
- Return
HTTP 200.
Sample payloadconnection.created.json
{
"eventId": "evt-a1b2c3d4-0000-0000-0000-000000000001",
"eventType": "connection.created",
"tenant": "sunrise-001",
"occurredAt": "2026-06-18T10:30:00Z",
"resourceId": "con-001"
}Fetch the full objectbash
curl https://api.lifeloop.com/api/v1/sunrise-001/connections/con-001 \
-H "Authorization: Bearer YOUR_SERVICE_TOKEN"