get_campaign_list
Retrieve and filter campaign lists from Multilead platform with sorting options and pagination to manage marketing initiatives effectively.
Instructions
Retrieve list of all campaigns with filtering and sorting
Args: user_id: The ID of the user account_id: The ID of the account (seat) campaign_state: Campaign status filter (1=ACTIVE, 2=DRAFT, 3=ARCHIVED, default: 1) sort_order: Sort direction ("ASC" or "DESC") sort_column: Column to sort by ("isActive", "name", or "createdAt") limit: Number of results to return (default: 30) offset: Pagination offset (default: 0)
Returns: List of campaigns with pagination metadata
Example: get_campaign_list( user_id="123", account_id="456", campaign_state=1, sort_order="DESC", sort_column="createdAt", limit=50 )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| campaign_state | No | ||
| sort_order | No | ||
| sort_column | No | ||
| limit | No | ||
| offset | No |