Retrieves all pending tasks assigned to your team members.
filters query parameter to narrow results by:
fullName, email, phone, linkedin (supports value or regex)campaignId (supports in/out arrays), campaignState (draft, running, ended, paused, errors, archived)type (manual, phone, email, linkedin, etc.), assignedTo (userId)dueDate (supports from/to in YYYY-MM-DD format)Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Page number for paginated results (0-indexed).
JSON array of filter objects. Each filter has a filterId and specific parameters.
Available Filters:
fullName: Filter by contact's full name.
value (string) or regex (string){"filterId":"fullName","value":"John Doe"}email: Filter by contact's email address.
value (string) or regex (string){"filterId":"email","value":"[email protected]"}phone: Filter by contact's phone number.
value (string) or regex (string){"filterId":"phone","value":"+1234567890"}linkedin: Filter by LinkedIn profile URL.
value (string) or regex (string){"filterId":"linkedin","value":"linkedin.com/in/johndoe"}campaignId: Filter by campaign IDs (inclusion/exclusion).
in (array of strings) and/or out (array of strings){"filterId":"campaignId","in":["cam_123"],"out":["cam_456"]}campaignState: Filter by campaign states.
in (array of strings) and/or out (array of strings)draft, running, ended, paused, errors, archived{"filterId":"campaignState","in":["running","paused"]}type: Filter by task type.
in (array of strings) and/or out (array of strings)manual, phone, linkedinInvite, linkedinSend, linkedinVoiceNote, emailsReplied, opportunityReplied, linkedinReplied, opportunityClicked, email, whatsappMessage{"filterId":"type","in":["phone","email"]}assignedTo: Filter by assigned user IDs.
in (array of strings) and/or out (array of strings){"filterId":"assignedTo","in":["usr_123","usr_456"]}dueDate: Filter by due date range.
from (string, YYYY-MM-DD) and/or to (string, YYYY-MM-DD){"filterId":"dueDate","from":"2025-01-01","to":"2025-12-31"}Multiple filters can be combined in an array.