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.