update-task
Modify existing tasks in Dooray projects by updating fields like assignees, status, tags, or priority. Use this tool to change task details while preserving unmodified data.
Instructions
Update an existing task in a Dooray project.
RECOMMENDED WORKFLOW (guide for AI assistants):
Fetch Current Task: Call get-task to retrieve current values before updating
Preserves existing data when only updating specific fields
Shows current assignees, tags, milestone, workflow status
Use returned data to know what values to preserve
Determine Changes: Identify what needs updating
If changing assignees/cc: Get options from get-my-member-info, get-project-member-list, get-project-member-group-list
Member types: {"id": "...", "type": "member|group|email"}
"member": organizationMemberId, "group": group id, "email": email address
Handle Tags: Call get-tag-list if updating tags
CRITICAL: Check tagGroup.mandatory=true - MUST include tags from all mandatory groups or update fails (500 error)
tagGroup.selectOne=true: Select exactly ONE tag from group
tagGroup.selectOne=false: Select one or MORE tags from group
IMPORTANT: tagIds is a COMPLETE replacement, not additive
Handle Workflow: Use get-project-workflow-list to see available statuses
Provide workflowId to change task status
Workflow classes: backlog (대기), registered (등록/할 일), working (진행 중), closed (완료)
IMPORTANT NOTES:
Complete Replacement: assignees, cc, and tagIds completely REPLACE existing values (not merged)
Preserve Data: Only provide fields you want to change; unprovided fields remain unchanged
Korean Terms: "to" = 담당자 (assignee), "cc" = 참조 (reference)
Priority: Use "none" to remove priority
URL Pattern Recognition: When given a Dooray task URL like "https://nhnent.dooray.com/task/PROJECT_ID/TASK_ID":
Extract the first numeric ID after "/task/" as projectId
Extract the second numeric ID as taskNumber
Examples:
Change priority: {"projectId": "123", "taskNumber": 42, "priority": "high"}
Update assignees: {"projectId": "123", "taskNumber": 42, "assignees": [{"id": "user123", "type": "member"}]}
Change status: {"projectId": "123", "taskNumber": 42, "workflowId": "working"}
Update tags: {"projectId": "123", "taskNumber": 42, "tagIds": ["tag1", "tag2"]}
Clear milestone: {"projectId": "123", "taskNumber": 42, "milestoneId": null}
Returns: Updated task with all current details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID where the task belongs | |
| taskNumber | Yes | Task number to update | |
| subject | No | New task subject/title | |
| body | No | New task body content | |
| assignees | No | New complete list of assignees (담당자). REPLACES all existing assignees. To get options: (1) use get-my-member-info for current user, (2) use get-project-member-list for project members, (3) use get-project-member-group-list for member groups. Each assignee object has {id: string, type: "member"|"group"|"email"}. | |
| cc | No | New complete list of CC recipients (참조). REPLACES all existing CC recipients. To get options: (1) use get-my-member-info for current user, (2) use get-project-member-list for project members, (3) use get-project-member-group-list for member groups. Each CC object has {id: string, type: "member"|"group"|"email"}. | |
| dueDate | No | New due date in ISO 8601 format | |
| milestoneId | No | New milestone ID, or null to remove milestone | |
| tagIds | No | New complete array of tag IDs. REPLACES all existing tags. IMPORTANT: Check for mandatory tag groups using get-tag-list tool. Projects may require specific tags from mandatory tag groups, or update will fail with 500 error. | |
| priority | No | Task priority level (highest, high, normal, low, lowest, none) | |
| workflowId | No | New workflow ID (status). Use get-project-workflow-list to see available workflow statuses for this project. Workflow classes: backlog (대기), registered (등록/할 일), working (진행 중), closed (완료). |