Imports leads from a CSV file to a specific lead list.
643 matches
19 actions
Smartlead
19 actions
- Add Email Accounts to CampaignPOSTv1.0.0
- Add Leads to CampaignPOSTv1.0.0
- Create CampaignPOSTv1.0.0
- Create Lead ListPOSTv1.0.0
- Get All CampaignsGETv1.0.0
- Get All Email AccountsGETv1.0.0
- Get Campaign AnalyticsGETv1.0.0
- Get Campaign by IDGETv1.0.0
- Get Campaign LeadsGETv1.0.0
- Get Campaign StatisticsGETv1.0.0
- Get Inbox RepliesPOSTv1.0.0
- Get Lead by EmailGETv1.0.0
- Get Overall StatisticsGETv1.0.0
- Import Leads to ListPOSTv1.0.0
- Pause LeadPOSTv1.0.0
- Reply to Email ThreadPOSTv1.0.0
- Resume LeadPOSTv1.0.0
- Update Campaign StatusPOSTv1.0.0
- Update LeadPOSTv1.0.0
Marketing/Smartlead
Import Leads to List
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
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
{
"type": "object",
"properties": {
"csvSettings": {
"type": "object",
"properties": {
"ignoreGlobalBlockList": {
"type": "boolean"
}
}
},
"customFields": {
"type": "object"
},
"emailFieldsAdded": {
"type": "object"
},
"fileName": {
"type": "string"
},
"id": {
"type": "integer"
},
"leadList": {
"type": "array",
"items": {
"type": "object",
"required": [
"email"
],
"properties": {
"company_name": {
"type": "string"
},
"custom_fields": {
"type": "object"
},
"email": {
"type": "string",
"format": "email",
"description": "Lead email address (required)"
},
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"phone_number": {
"type": "string"
},
"website": {
"type": "string"
}
}
}
}
},
"required": [
"fileName",
"id",
"leadList"
],
"additionalProperties": false
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
{
"type": "object",
"properties": {
"imported_count": {
"type": "integer"
},
"ok": {
"type": "boolean"
}
}
}