v1

latestOpenAPI 3.1.02026-07-26359254.7 MB
LinkedIn Accounts

List LinkedIn accounts

<small>Requires the channels:read scope (or a broader one that includes it).</small>

Returns all LinkedIn accounts for the authenticated user.

get/v3/linkedin-accounts

Response

List of LinkedIn accounts

idinteger

Unique identifier for the LinkedIn account

namestring

Display name of the LinkedIn account

status'disabled' | 'enabled' | 'dailyLimitReached' | 'cookieInvalid'

Current status of the account

profileUrlstring nullable

URL to the LinkedIn profile

photoUrlstring nullable

URL to the profile photo

ownerUserIdinteger

ID of the user who owns this account

accountType'public' | 'salesNavigator' | 'premium' nullable

Type of LinkedIn account

authType'cookie' | 'credentials'

Authentication method used

cookieStatus'notValid' | 'valid' | 'neverValidated'

Status of the LinkedIn authentication cookie

Example response

[
  {
    "id": 10,
    "name": "John Doe",
    "status": "enabled",
    "profileUrl": "https://www.linkedin.com/in/johndoe",
    "photoUrl": "https://media.licdn.com/photo.jpg",
    "ownerUserId": 42,
    "accountType": "premium",
    "authType": "cookie",
    "cookieStatus": "valid"
  }
]