Actions36
- Document Actions
- Project Actions
- Project Task Actions
- User Actions
- Company Actions
Overview
This node integrates with the awork API to create a new task within a specified project. It is useful for automating project management workflows by programmatically adding tasks with detailed attributes such as task name, description, type of work, status, due date, and planned duration. For example, it can be used to automatically generate tasks from form submissions or other triggers in a workflow.
Use Case Examples
- Automatically create a task in a project when a new issue is reported.
- Add tasks to a project based on incoming customer requests or support tickets.
Properties
| Name | Meaning |
|---|---|
| Project ID | The ID of the project where the task will be created. |
| Task Name | The name of the task to be created. |
| Task Description | A description providing details about the task. |
| Type of Work ID | The identifier for the type of work associated with the task. |
| Task Status ID | The identifier for the status of the task. |
| Due Date | The due date and time for the task. |
| Planned Duration | The planned duration for the task in seconds. |
| Request Options | Settings for request behavior such as batching, SSL certificate validation, proxy, and timeout. |
Output
JSON
id- The unique identifier of the created task.name- The name of the created task.description- The description of the created task.typeOfWorkId- The type of work ID associated with the created task.taskStatusId- The status ID of the created task.dueDate- The due date of the created task.plannedDuration- The planned duration of the created task in seconds.
Dependencies
- awork API
- API key credential for authentication
Troubleshooting
- Ensure the Project ID is valid and the user has permission to create tasks in the project.
- Verify that required fields like Task Name and Project ID are provided; missing required fields will cause errors.
- Check network connectivity and proxy settings if requests fail or time out.
- If SSL certificate validation errors occur, consider enabling the option to ignore SSL issues, but be aware of security risks.
Links
- awork API Documentation - Official API documentation for awork, useful for understanding available endpoints and request formats.