get-milestone-list
Retrieve milestones for project tracking in Dooray. Organize tasks by release or sprint with essential milestone details including status, dates, and IDs for task management.
Instructions
Get list of milestones for a project.
Milestones are used to organize and track tasks by release or sprint. This tool retrieves all milestones in a project.
Note: Returns compact response with essential fields only.
URL Pattern Recognition: When given a Dooray URL like "https://nhnent.dooray.com/task/PROJECT_ID", extract the PROJECT_ID (the first numeric ID after "/task/") and use it as the projectId parameter.
Examples:
Get all milestones: {"projectId": "123456"}
Get only open milestones: {"projectId": "123456", "status": "open"}
Get only closed milestones: {"projectId": "123456", "status": "closed"}
Returns an array of milestones with id, name, description, dates, and status. Use milestone IDs when creating or updating tasks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID to get milestones from | |
| status | No | Filter by milestone status (open or closed) |