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 typeTriggered when
connection.createdA new connection is added to a resident
connection.updatedA connection's details or permissions change
connection.removedA connection is removed from a resident

What to do after receiving this event

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