WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

List invitations sent

GET/api/linkedin/gateway/users/invite/sent

Pages through the connected account's pending outbound connection requests — invites it has sent that the recipient hasn't yet accepted, declined, or that haven't expired.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401. The account behind account_id must belong to your key.

Query parameters

FieldTypeDescription
account_id *stringWhich connected account's sent invitations to list.
cursorstringThe cursor from a previous response, to continue paging.
limitintegerItems per page, 1–250.

Response fields

FieldTypeDescription
resultobjectitems[], each with the invitation's id, the invited person's name and identifiers, invitation_text, an inviter block, and a specifics block carrying shared_secret, plus a paging cursor.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. The account_id doesn't belong to this key.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl "https://api.warmably.com/api/linkedin/gateway/users/invite/sent?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf&limit=50" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "InvitationList",
  "items": [
    {
      "object": "InvitationSent",
      "id": "6e2f1a9c-8b3d-4e77-9c1a-2f6b0d9e5a11",
      "invited_user": "Satya Nadella",
      "invited_user_id": "ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ",
      "invited_user_public_id": "satyanadella",
      "invited_user_description": "Chairman and CEO at Microsoft",
      "date": "3d",
      "parsed_datetime": "2026-08-31T09:12:00Z",
      "invitation_text": "Saw your post on Copilot — would love to connect.",
      "inviter": {
        "inviter_name": "Jane Doe",
        "inviter_id": "ACoAAABpbnZpdGVy",
        "inviter_public_identifier": "jane-doe-mkt",
        "inviter_description": "Growth Marketing Lead at Acme"
      },
      "specifics": {
        "provider": "LINKEDIN",
        "shared_secret": "eyJhbGciOiJIUzI1NiJ9..."
      }
    }
  ],
  "cursor": "eyJvZmZzZXQiOjUwfQ=="
}
No key yet? Create one from Dashboard → API Keys.