Attio icon

Attio

Interact with Attio API

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

  1. Retrieve the 10 most recent tasks assigned to a specific workspace member.
  2. List tasks linked to a particular record, such as a person or project, with pagination support.
  3. 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

Discussion