Actions57
- Objects Actions
- Attributes Actions
- List Attributes
- Get Attribute
- Update Attribute
- GET target/identifier/attributes/attribute/options
- POST target/identifier/attributes/attribute/options
- PATCH target/identifier/attributes/attribute/options/option
- POST target/identifier/attributes/attribute/statuses
- Create Attribute
- GET target/identifier/attributes/attribute/statuses
- PATCH target/identifier/attributes/attribute/statuses/status
- Entries Actions
- Records Actions
- Lists Actions
- Meta Actions
- Workspace Members Actions
- Notes Actions
- Tasks Actions
- Webhooks Actions
- Threads Actions
- Comments Actions
Overview
This node operation lists tasks from the Attio API. It is useful for retrieving a filtered and paginated list of tasks based on various criteria such as limit, offset, sorting order, linked objects, assignees, and completion status. Practical applications include managing task workflows, tracking task assignments, and integrating task data into automation workflows.
Use Case Examples
- Retrieve the 10 most recent tasks assigned to a specific workspace member.
- List tasks linked to a particular record, such as a person or project, with pagination support.
- Filter tasks to show only completed or non-completed tasks for reporting or follow-up.
Properties
| Name | Meaning |
|---|---|
| Limit | The maximum number of task results to return, controlling pagination. |
| Offset | The number of task results to skip before starting to return results, used for pagination. |
| Sort | The order in which tasks are returned, either oldest first or newest first. |
| Linked Object | Filter tasks to only those linked to a specific object type, such as 'people'. |
| Linked Record Id | Filter tasks to only those linked to a specific record ID within the linked object. |
| Assignee | Filter tasks by the workspace member assigned, identified by email or ID. Use empty or 'null' to find unassigned tasks. |
| Is Completed | Filter tasks by their completion status: true for completed tasks, false for non-completed tasks. |
Output
JSON
json- The JSON response containing the list of tasks retrieved from the Attio API.
Dependencies
- Requires an API key credential for Attio API authentication.
Troubleshooting
- Common issues include invalid or expired API tokens causing authentication failures. Ensure the API key credential is valid and has necessary permissions.
- Incorrect parameter values such as invalid linked object names or record IDs may result in empty or error responses. Verify parameter correctness.
- Pagination parameters (limit and offset) must be used correctly to avoid missing or duplicated data in paginated results.
Links
- Attio API Pagination Guide - Detailed guide on how to use pagination parameters like limit and offset in Attio API requests.