Facebook Pixel

Get Account Status by ID

Get the status of a specific LinkedIn account by its ID

GET/linkedin/account/{accountId}/status

Get Account Status by ID

Get the status of a specific LinkedIn account by its ID

Authentication requiredLinkedIn Account

Code Examples

curl -X GET 'https://api.connectsafely.ai/linkedin/account/acc_123456789/status' \
-H 'Authorization: Bearer <your_api_key>'

Parameters

NameTypeRequiredDescription
accountIdstringYesThe LinkedIn account ID to check

Responses

StatusDescription
200Successful response

200 Example

{
  "id": "acc_123456789",
  "firstName": "John",
  "lastName": "Doe",
  "publicId": "john-doe-123",
  "platform": "linkedin",
  "status": "FREE",
  "enabled": true,
  "lastUsed": "2024-01-15T10:30:00.000Z",
  "hasTokens": true
}