GET
/
actions
/
linkedin
/
listConversations
curl --request GET \
  --url https://svc.sandbox.anon.com/actions/linkedin/listConversations \
  --header 'Authorization: Bearer <token>'
{
  "conversations": [
    {
      "id": "<string>",
      "type": "SINGLE",
      "profileId": "<string>",
      "timestamp": "<string>",
      "unreadCount": 123,
      "archived": true,
      "mutedUntil": 123,
      "readOnly": "0",
      "subject": "<string>",
      "folder": [
        "INBOX"
      ],
      "organizationId": "<string>",
      "mailboxId": "<string>",
      "contentType": "inmail",
      "profiles": [
        {
          "id": "<string>",
          "name": "<string>",
          "profileUrl": "<string>",
          "isSelf": true
        }
      ],
      "seen": true,
      "seenBy": {}
    }
  ],
  "count": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

profileName
string | null

Name of the profile to filter conversations by

profileId
string | null

ID of the profile to filter conversations by

appUserId
string
required

The ID of the user to take the action for

contentType
string | null

Filter by content type

appUserPoolId
string | null

The ID of the user pool that contains the user ID

Response

200 - application/json
conversations
object[]
required
count
integer
required