WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

Download an attendee's picture

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

Downloads the current picture for an attendee — for a group chat entry, this is the group's own picture rather than any one member's.

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 (or group chat) whose picture to download.

Query parameters

FieldTypeDescription
account_id *stringThe connected account this attendee belongs to. Must belong to the calling key.
The response body is the image itself, not JSON — read it as a stream or buffer and use the response's Content-Type header to know what you got.

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/picture?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf" \
  -H "Authorization: Bearer wm_live_..." \
  -o picture.jpg
Response
200 OK
< binary image bytes, Content-Type set from the original file >
No key yet? Create one from Dashboard → API Keys.