list_tasks
Retrieve tasks from Follow Up Boss CRM matching criteria like due date, type, assignee, person, or completion status to find the specific tasks you need.
Instructions
Get a list of tasks. (GET /tasks)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | Find tasks that fall into the following ranges: `today`, `overdue` and `upcoming`. | |
| name | No | Find tasks where the name is like what you pass in. (e.g., "world" would find a task named "hello world") | |
| type | No | Find tasks by the following types: `Follow Up`, `Call`, `Email`, `Text`, `Appointment`, `Showing`, `Closing`, `Open House` or `Thank You`. (Note: A comma separated list of types is accepted.) | |
| dueEnd | No | Find tasks that are due from this time and before. | |
| dueStart | No | Finds tasks that are due from this time forward. | |
| personId | No | Find tasks by a person's id. | |
| assignedTo | No | Find tasks assigned to a specific user using their full name. | |
| extraQuery | No | Extra raw query parameters not explicitly listed above — e.g. FUB custom field filters like custom.ClosingDate on /people or /deals. Keys and values are sent as-is. | |
| isCompleted | No | Find tasks that have been completed or not completed. | |
| assignedUserId | No | Find tasks assigned to a specific user by id. |