Actions27
- Project Actions
- Project Task Actions
- User Actions
- Company Actions
Overview
This node integrates with the awork API to retrieve tasks associated with a specific project. It is useful for automating workflows that require fetching detailed task information from projects managed in awork, such as project management dashboards, reporting tools, or synchronization with other systems.
A practical example would be automatically pulling all tasks of a given project to display their status and deadlines in an external tool or to trigger further automation based on task attributes.
Properties
| Name | Meaning |
|---|---|
| Project ID | The unique identifier of the project whose tasks you want to retrieve. |
| Return All | Whether to return all matching tasks or limit the number of results returned. |
| Filter By | A filter expression to narrow down the tasks returned, e.g., filtering by duration or status. See awork API docs for syntax. |
| Order By | Defines the sorting order of the returned tasks, e.g., by name ascending or due date descending. See awork API docs for details. |
Output
The node outputs JSON data representing the list of tasks retrieved from the specified project. Each task object typically includes fields such as task ID, name, description, status, assigned users, deadlines, and other metadata defined by the awork API.
If binary data were involved (e.g., attachments), it would be summarized here, but this operation focuses on JSON task data only.
Dependencies
- Requires an API key credential for authenticating with the awork API.
- The node uses the base URL
https://api.awork.comand expects JSON responses. - Proper configuration of the API authentication credential in n8n is necessary.
Troubleshooting
Common issues:
- Invalid or missing Project ID will cause the API call to fail or return no results.
- Incorrect filter or order expressions may result in errors or unexpected output.
- Network or authentication failures can prevent data retrieval.
Error messages:
- Authentication errors indicate invalid or expired API credentials; reconfigure the API key.
- "Project not found" or similar indicates the provided Project ID does not exist or is inaccessible.
- Syntax errors in filter/order parameters should be corrected according to the awork API filtering and ordering documentation.