WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

List attendees in a chat

GET/api/linkedin/gateway/chats/{chat_id}/attendees

Returns everyone in a chat — the connected account itself plus every other participant, useful for rendering a group chat's member list or resolving who's who in a 1:1.

Authentication

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

Path parameters

FieldTypeDescription
chat_id *stringThe chat to list attendees from.

Query parameters

FieldTypeDescription
account_id *stringThe connected account this chat belongs to.

Response fields

FieldTypeDescription
items[].idstringWarmably's id for this attendee — use it with the attendee endpoints.
items[].provider_idstringThe attendee's underlying LinkedIn profile id.
items[].namestringDisplay name.
items[].is_selfnumber1 if this attendee is the connected account itself, otherwise 0.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. The account_id doesn't belong to this key.·404 Not Found. No chat with that id belongs to this account.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl "https://api.warmably.com/api/linkedin/gateway/chats/9c5e1a2b-.../attendees?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "ChatAttendeeList",
  "items": [
    {
      "object": "ChatAttendee",
      "id": "3f2a...-...",
      "provider_id": "ACoAAA...",
      "name": "Satya Nadella",
      "is_self": 0
    }
  ],
  "cursor": null
}
No key yet? Create one from Dashboard → API Keys.