Actions9
- Project Actions
- Task Actions
- Message Actions
- Calendar Actions
Overview
This node integrates with the Dooray API, a platform for project management, messaging, and calendar functionalities. Specifically, the "Project - Get" operation retrieves detailed information about a single project by its unique Project ID. This is useful when you need to fetch up-to-date project details such as status, description, or metadata within an automated workflow.
Practical examples include:
- Automatically pulling project details to update dashboards.
- Using project data to trigger conditional logic in workflows.
- Synchronizing project information with other tools or databases.
Properties
| Name | Meaning |
|---|---|
| Project ID | The unique identifier of the project to retrieve. This is a required string input. |
Output
The node outputs JSON data representing the full details of the requested project as returned by the Dooray API. This typically includes fields like project name, description, status, creation date, members, and other metadata relevant to the project.
No binary data output is expected from this operation.
Dependencies
- Requires an active connection to the Dooray API via an API key credential configured in n8n.
- The node uses the base URL
https://api.dooray.comfor all requests. - Proper permissions on the API key are necessary to access project information.
Troubleshooting
Common issues:
- Invalid or missing Project ID will cause the request to fail.
- Insufficient API permissions may result in authorization errors.
- Network connectivity problems can prevent successful API calls.
Error messages:
- "Project not found" indicates the provided Project ID does not exist or is inaccessible.
- "Unauthorized" or "Forbidden" suggests issues with API credentials or permissions.
- "Request timed out" points to network or server availability problems.
To resolve these:
- Verify the Project ID is correct and exists in Dooray.
- Check that the API key credential is valid and has the necessary scopes.
- Ensure stable internet connectivity and that the Dooray API service is operational.
Links and References
- Dooray API Documentation (for detailed API endpoints and data structures)
- n8n Documentation (for general usage of API nodes and credential setup)