Return paginated LinkedIn inbox conversations with optional filters.
643 matches
13 actions
HeyReach
13 actions
- Add leads to campaignPOSTv1.0.0
- Add leads to listPOSTv1.0.0
- Create empty listPOSTv1.0.0
- Get all campaignsPOSTv1.0.0
- Get all listsPOSTv1.0.0
- Get campaignGETv1.0.0
- Get conversationsPOSTv1.0.0
- Get leadPOSTv1.0.0
- Get leads from listPOSTv1.0.0
- Get LinkedIn accountsPOSTv1.0.0
- Get overall statsPOSTv1.0.0
- Pause campaignPOSTv1.0.0
- Resume campaignPOSTv1.0.0
Marketing/HeyReach
Get conversations
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
{
"type": "object",
"additionalProperties": false,
"properties": {
"offset": {
"type": "integer"
},
"limit": {
"type": "integer",
"description": "Page size (1–100)."
},
"filters": {
"type": "object",
"description": "Inbox filters such as campaign, account, or lead identity.",
"additionalProperties": true
}
}
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
{
"type": "object",
"additionalProperties": true,
"properties": {
"totalCount": {
"type": "integer"
},
"items": {
"type": "array",
"items": {
"type": "object"
}
}
}
}