WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

List all attendees

GET/api/linkedin/gateway/chat_attendees

Lists everyone a connected account has ever messaged with — one entry per person or group across every chat, with cursor-based pagination.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401.

Query parameters

FieldTypeDescription
account_id *stringThe connected account to list attendees from. Must belong to the calling key.
limitintegerPage size, from 1 to 250.
cursorstringPass back the cursor from a previous response to fetch the next page.

Response fields

FieldTypeDescription
itemsarrayThe page of attendees.
items[].idstringThe attendee's id.
items[].provider_idstringThe attendee's id on the underlying provider (e.g. a LinkedIn URN).
items[].namestringDisplay name.
items[].is_self0 | 11 when this entry is the connected account itself.
items[].picture_urlstringProfile picture URL, when available.
items[].profile_urlstringPublic profile URL, when available.
cursorstring | nullPass as the cursor query parameter to fetch the next page. Null once there are no more.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. account_id doesn't belong to this key.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl "https://api.warmably.com/api/linkedin/gateway/chat_attendees?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf&limit=20" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "ChatAttendeeList",
  "items": [
    {
      "object": "ChatAttendee",
      "id": "9fA2mZ0pQKxLR3vWtC8u1g",
      "account_id": "459993d2-b0e7-4b19-baf9-45252ca324cf",
      "provider_id": "ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ",
      "name": "Satya Nadella",
      "is_self": 0,
      "picture_url": "https://media.licdn.com/dms/image/...",
      "profile_url": "https://www.linkedin.com/in/satyanadella/"
    }
  ],
  "cursor": "eyJvZmZzZXQiOjIwfQ"
}
No key yet? Create one from Dashboard → API Keys.