list_project_estimate_points
Retrieve all valid estimate points for a project to obtain their UUIDs for work item updates. After fetching the estimate ID, map display labels like 'S', 'M', 'L' to the corresponding point IDs.
Instructions
List all valid estimate points for a project.
Use this to discover the available estimate point UUIDs before calling update_work_item with an estimate_point value. Each EstimatePoint has an id (UUID to pass to update_work_item) and a value (display label such as "1", "2", "3", "5", "8" or "XS", "S", "M", "L", "XL").
Workflow: 1. Call get_project_estimate to get the estimate_id 2. Call list_project_estimate_points with that estimate_id 3. Pick the EstimatePoint whose value matches the user's intent 4. Pass that EstimatePoint.id to update_work_item(estimate_point=...)
Args: project_id: UUID of the project estimate_id: UUID of the estimate (from get_project_estimate)
Returns: List of EstimatePoint objects, each with id and value fields
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ||
| estimate_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |