Actions26
- Project Actions
- Project Task Actions
- User Actions
- Company Actions
Overview
The Project Task: Add Tag operation in this custom n8n node allows you to add a tag to a specific project task within the awork platform. This is useful for organizing, categorizing, or filtering tasks by tags, which can help teams manage workflows more efficiently.
Common scenarios include:
- Automatically tagging tasks based on certain triggers (e.g., new tasks from another system).
- Batch updating tasks with relevant tags for reporting or workflow automation.
- Integrating with other tools to synchronize task tags.
Example:
When a new support ticket is created in your helpdesk, you can use this node to automatically add a "Support" tag to the corresponding task in awork.
Properties
| Display Name | Type | Meaning |
|---|---|---|
| Task ID | String | The unique identifier of the project task to which the tag will be added. Required. |
| Tag Name | String | The name of the tag to add to the specified task. |
Output
The node outputs a json object containing the result of the tag addition operation. The exact structure depends on the awork API response, but typically includes information about the updated task and its tags.
Dependencies
- External Service: Requires access to the awork API.
- API Key: You must configure valid awork API credentials in n8n under the credential type
aworkApi. - n8n Configuration: No additional configuration required beyond setting up credentials.
Troubleshooting
Common Issues:
- Invalid Task ID: If the provided Task ID does not exist, the node may return an error indicating the task was not found.
- Missing Tag Name: If the Tag Name is empty, the API may reject the request.
- Authentication Errors: Invalid or missing API credentials will cause authentication failures.
Error Messages & Resolutions:
"Task not found": Check that the Task ID is correct and exists in awork."Unauthorized": Ensure your awork API credentials are correctly set up in n8n."Tag already exists": The tag may already be assigned to the task; check before adding.