Actions26
- Project Actions
- Project Task Actions
- User Actions
- Company Actions
Overview
This node allows you to retrieve detailed information about a specific project from the awork API by providing its unique Project ID. It is useful in scenarios where you need to fetch and process project data within your n8n workflows, such as reporting, synchronization with other systems, or triggering actions based on project details.
Example use cases:
- Fetching project details to display in dashboards.
- Using project information to trigger conditional logic in workflows.
- Integrating awork project data with other tools (e.g., CRM, ticketing systems).
Properties
| Display Name | Type | Meaning |
|---|---|---|
| Project ID | String | The unique identifier of the project you want to retrieve. Required. |
- Project ID: Enter the ID of the project you wish to get information for. This is a required field.
Output
The output will be a JSON object containing the project's details as returned by the awork API. The structure typically includes fields such as:
{
"id": "string",
"name": "string",
"description": "string",
"status": "string",
"createdAt": "string",
"updatedAt": "string",
// ...other project-specific fields
}
Note: The exact fields depend on the awork API's response for a project resource.
Dependencies
- External Service: Requires access to the awork API.
- API Key: You must configure valid awork API credentials in n8n under the name
aworkApi. - n8n Configuration: No additional configuration is needed beyond setting up the credentials.
Troubleshooting
- Invalid Project ID: If you provide an incorrect or non-existent Project ID, the node may return an error indicating that the project was not found.
- Authentication Errors: If your API key is missing or invalid, you may receive authentication errors. Ensure your credentials are correctly set up in n8n.
- Network Issues: Connectivity problems between n8n and the awork API can cause request failures.
Common error messages:
"Project not found": Check that the Project ID is correct."401 Unauthorized": Verify your awork API credentials."Network Error": Ensure n8n has internet access and the awork API is reachable.