Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.seamless.ai/llms.txt

Use this file to discover all available pages before exploring further.

Manage tasks for contacts and campaigns. Requires Connect (full) access (same as campaigns).
ToolDescriptionRiskSchema
list_tasksList tasks or get one by ID.read#list_tasks
create_taskCreate email, call, or custom task.write#create_task
update_taskUpdate name, due date, priority, status.write#update_task
delete_taskPermanently delete a task.destructive#delete_task
execute_task_actionpause, reschedule, complete, cancel, etc.write#execute_task_action

create_task

taskType
string
required
manual-email, call, action-item, or linkedin (not type).
contactId
integer | string
Saved contact ID from get_my_contacts.

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "create_task",
    "arguments": {
      "contactId": 456,
      "name": "Follow-up call",
      "taskType": "call"
    }
  },
  "id": 1
}