clickup_create_key_result
Create a new Key Result for a ClickUp Goal with a specified name, progress type, target range, and owners.
Instructions
Add a Key Result (Target) to a Goal.
type determines how progress is tracked — see the module docstring.
automatic requires task_ids and/or list_ids since progress is
derived from those tasks/lists rather than manual steps_current edits.
When to Use:
Breaking a Goal down into one or more measurable targets.
When NOT to Use:
Updating an existing Key Result's progress — use
clickup_edit_key_result.
Returns: A confirmation string with the new Key Result's id and fields.
Examples: params = { "goal_id": "e53a033c-1146-4b58-b498-7ec39b5661c2", "name": "Close 10 deals", "type": "number", "steps_start": 0, "steps_end": 10, "unit": "deals", "owners": [123], }
Error Handling: 404 means the goal_id does not exist; 400 means the type-specific fields (steps_start/steps_end/task_ids/list_ids) are inconsistent for the chosen type.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |