WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

Retrieve an attendee

GET/api/linkedin/gateway/chat_attendees/{id}

Fetches the details Warmably has stored for a single chat participant — the same shape returned in List all attendees.

Authentication

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

Path parameters

FieldTypeDescription
id *stringThe id of the attendee to retrieve.

Query parameters

FieldTypeDescription
account_id *stringThe connected account this attendee belongs to. Must belong to the calling key.

Response fields

FieldTypeDescription
idstringThe attendee's id.
provider_idstringThe attendee's id on the underlying provider (e.g. a LinkedIn URN).
namestringDisplay name.
is_self0 | 11 when this entry is the connected account itself.
hidden0 | 11 when the provider marks this attendee as hidden from the chat list.
picture_urlstringProfile picture URL, when available.
profile_urlstringPublic profile URL, when available.
specificsobjectProvider-specific extras — for LinkedIn, things like network distance to the connected account.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. account_id doesn't belong to this key.·404 Not Found. No attendee exists with that id on that account.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl "https://api.warmably.com/api/linkedin/gateway/chat_attendees/9fA2mZ0pQKxLR3vWtC8u1g?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "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/"
}
No key yet? Create one from Dashboard → API Keys.