list_leads
Retrieve and filter leads from email campaigns using criteria like campaign ID, list ID, status, and pagination for organized lead management.
Instructions
List leads with filters and pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | No | Filter by campaign ID | |
limit | No | Number of leads to return (1-100, default: 20) | |
list_id | No | Filter by list ID | |
starting_after | No | ID of the last item from previous page for pagination | |
status | No | Filter by status |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "Filter by campaign ID",
"type": "string"
},
"limit": {
"description": "Number of leads to return (1-100, default: 20)",
"type": "number"
},
"list_id": {
"description": "Filter by list ID",
"type": "string"
},
"starting_after": {
"description": "ID of the last item from previous page for pagination",
"type": "string"
},
"status": {
"description": "Filter by status",
"type": "string"
}
},
"type": "object"
}