Actions9
- Project Actions
- Task Actions
- Message Actions
- Calendar Actions
Overview
This node integrates with the Dooray API to manage project tasks. Specifically, the "Task - Create" operation allows users to create a new task within a specified project. This is useful for automating task creation workflows, such as adding tasks from form submissions, syncing tasks from other tools, or programmatically managing project work items.
Practical examples:
- Automatically creating a task in Dooray when a new issue is reported in a bug tracking system.
- Adding tasks based on customer requests collected via a web form.
- Scheduling and assigning tasks dynamically during project planning automation.
Properties
| Name | Meaning |
|---|---|
| Project ID | The unique identifier of the project where the task will be created. |
| Title | The title or subject of the task. |
| Description | A detailed description of the task content, supporting plain text format. |
| Additional Fields | Optional extra fields to customize the task: |
| - Priority | The priority level of the task. Options: High, Highest, Low, Lowest, Normal (default). |
| - Due Date | The due date and time by which the task should be completed. |
Output
The node outputs JSON data representing the newly created task object returned by the Dooray API. This typically includes task identifiers, status, timestamps, and all submitted properties such as title, description, priority, and due date.
If the API supports it, binary data output is not applicable here since this operation deals with JSON task objects only.
Dependencies
- Requires an active Dooray API key credential configured in n8n for authentication.
- Network access to
https://api.dooray.comis necessary. - The node uses standard HTTP headers for JSON communication.
Troubleshooting
- Missing or invalid Project ID: Ensure the Project ID is correct and accessible with your API credentials.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Invalid field values: Check that the priority value is one of the allowed options and the due date is in proper ISO 8601 format.
- API rate limits or downtime: If requests fail repeatedly, check Dooray service status and consider retry logic.
Common error messages:
- Unauthorized or 401 errors indicate issues with API credentials.
- 400 Bad Request may indicate missing required fields or invalid data formats.
- 404 Not Found if the specified project does not exist.
Resolving these usually involves verifying input parameters, credentials, and network connectivity.