Add leads to an ACTIVE HeyReach campaign. The campaign must already have LinkedIn sender accounts assigned.
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
Add leads to campaign
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
{
"type": "object",
"required": [
"campaignId",
"accountLeadPairs"
],
"additionalProperties": false,
"properties": {
"campaignId": {
"type": "integer",
"description": "Target campaign ID."
},
"accountLeadPairs": {
"type": "array",
"description": "Leads to add, optionally pinned to a sender account. Max 100 per request.",
"items": {
"type": "object",
"required": [
"lead"
],
"properties": {
"linkedInAccountId": {
"type": "integer",
"description": "Sender account to assign this lead to."
},
"lead": {
"type": "object",
"required": [
"profileUrl"
],
"properties": {
"profileUrl": {
"type": "string",
"description": "LinkedIn profile URL."
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"emailAddress": {
"type": "string"
},
"companyName": {
"type": "string"
},
"position": {
"type": "string"
}
}
}
}
}
}
}
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
{
"type": "object",
"additionalProperties": true,
"properties": {
"addedLeadsCount": {
"type": "integer"
},
"updatedLeadsCount": {
"type": "integer"
},
"failedLeadsCount": {
"type": "integer"
}
}
}