Actions27
- Project Actions
- Project Task Actions
- User Actions
- Company Actions
Overview
This node integrates with the awork API to automate workflows related to project management. Specifically, for the "Project" resource and the "Create Task List" operation, it allows users to create a new task list within a specified project. This is useful in scenarios where teams want to organize tasks into lists for better tracking and management within projects.
Practical examples include:
- Automatically creating task lists when a new project phase starts.
- Organizing tasks by categories or milestones by generating corresponding task lists.
- Streamlining project setup by programmatically adding predefined task lists.
Properties
| Name | Meaning |
|---|---|
| Project ID | The unique identifier of the project in which the new task list will be created. |
| Name | The name of the task list to be created within the specified project. |
Output
The node outputs JSON data representing the newly created task list. This typically includes details such as the task list's ID, name, creation timestamp, and possibly other metadata returned by the awork API. There is no indication that binary data is output by this node.
Dependencies
- Requires an API key credential for authenticating with the awork API.
- The node makes HTTP requests to
https://api.awork.com. - Proper configuration of the API key credential in n8n is necessary for successful execution.
Troubleshooting
Common issues:
- Invalid or missing Project ID: Ensure the Project ID provided exists and is correctly formatted.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Network or API downtime: Check connectivity and awork API status.
Common error messages:
- Unauthorized or 401 errors: Indicate invalid or expired API credentials; reconfigure the API key.
- 404 Not Found: The specified Project ID does not exist; verify the ID.
- Validation errors: Missing required fields like "Name" or "Project ID"; ensure all mandatory properties are set.