Actions9
- Project Actions
- Task Actions
- Message Actions
- Calendar Actions
Overview
The node integrates with the Dooray API, focusing here on the Task - Get operation. It retrieves detailed information about a specific task within a given project in Dooray. This is useful for workflows that need to fetch task details dynamically, such as monitoring task status, extracting task metadata for reporting, or triggering actions based on task properties.
Practical examples:
- Automatically fetching task details when a new comment is added.
- Retrieving task information to update an external system or dashboard.
- Using task data to conditionally route workflow execution.
Properties
| Name | Meaning |
|---|---|
| Project ID | The unique identifier of the project containing the task. |
| Task ID | The unique identifier of the task to retrieve detailed information about. |
Output
The node outputs JSON data representing the full details of the requested task. This typically includes fields such as task title, description, status, assignees, due dates, and other metadata provided by the Dooray API for tasks.
No binary data output is expected from this operation.
Dependencies
- Requires an active connection to the Dooray API.
- Needs an API authentication token credential configured in n8n to authorize requests.
- The base URL for API requests is
https://api.dooray.com. - Proper permissions on the Dooray account to access project and task data.
Troubleshooting
Common issues:
- Invalid or missing Project ID or Task ID will cause the API request to fail.
- Authentication errors if the API key/token is incorrect or expired.
- Insufficient permissions to access the specified project or task.
- Network connectivity problems preventing API calls.
Error messages:
- "404 Not Found" — The specified project or task ID does not exist; verify IDs.
- "401 Unauthorized" — Authentication failed; check API credentials.
- "403 Forbidden" — Access denied; ensure the user has rights to the project/task.
Resolutions:
- Double-check input IDs for correctness.
- Reconfigure or refresh API credentials.
- Confirm user permissions in Dooray.
- Test network connectivity and API availability.
Links and References
- Dooray API Documentation (official API reference)
- n8n documentation on API Credentials for setting up authentication tokens