GET
/
actions
/
linkedin
/
listConnections
curl --request GET \
  --url https://svc.sandbox.anon.com/actions/linkedin/listConnections \
  --header 'Authorization: Bearer <token>'
{
  "connections": [
    {
      "id": "<string>",
      "name": "<string>",
      "headline": "<string>",
      "profilePictureUrl": "<string>",
      "publicIdentifier": "<string>",
      "publicProfileUrl": "<string>",
      "createdAt": 123
    }
  ],
  "cursor": "<string>",
  "pageCount": 123,
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cursor
string | null

Cursor for pagination, used to fetch the next page of results

profileName
string | null

Name of the profile to filter connections by

appUserId
string
required

The ID of the user to take the action for

appUserPoolId
string | null

The ID of the user pool that contains the user ID

Response

200 - application/json
connections
object[]
required
pageCount
integer
required

Total number of items in the current page

cursor
string | null

Cursor to fetch the next page of results, if available

totalCount
integer | null

Total number of items across all pages. Only present when searching by profileName