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, tasks, users, and companies. It allows users to perform various operations on these resources by interacting with the awork platform programmatically within n8n. Typical use cases include managing projects, updating or retrieving task details, handling user information, and managing company data. For example, a user could automate the creation of new projects when a form is submitted or update task statuses based on external triggers.
Properties
| Name | Meaning |
|---|---|
| Type | The type of this entity |
The single input property "Type" is a required string that specifies the type of entity being handled in the operation. Since the provided JSON shows only this property under the default resource and operation, it likely serves as a generic identifier or filter for the entity type in the node's logic.
Output
The node outputs data in JSON format representing the response from the awork API corresponding to the requested operation on the selected resource. This typically includes details about projects, tasks, users, or companies depending on the chosen resource and operation. If binary data were involved (e.g., file attachments), it would be included accordingly, but no such indication is present here.
Dependencies
- Requires an API key credential for authenticating with the awork API.
- The base URL for API requests is
https://api.awork.com. - The node sets headers including
Accept: application/json,Content-Type: application/json, and a custom headerx-originating-appset to"n8n".
Troubleshooting
- Authentication errors: Ensure the API key credential is correctly configured and has sufficient permissions.
- Invalid resource or operation: Selecting unsupported combinations may cause errors; verify the resource and operation selections.
- Network issues: Check connectivity to
https://api.awork.com. - Missing required properties: The "Type" property is mandatory; omitting it will likely result in errors.