create_goal
Create a new goal in a workspace. Specify name, optional due date, description, owners, and color. The returned goal ID allows adding measurable key results afterwards.
Instructions
Create a new Goal in a Workspace with optional due date, description, owners and color. Returns the created Goal with its id. Add measurable targets afterwards with create_key_result.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | No | Team/Workspace ID. Falls back to CLICKUP_TEAM_ID when omitted. | |
| name | Yes | Name/title of the Goal. | |
| due_date | No | Target/due date. Accepts natural language ('next friday'), ISO date, or epoch milliseconds. | |
| description | No | Optional description of what the Goal aims to achieve. | |
| multiple_owners | No | If true, allow more than one owner on the Goal. | |
| owners | No | User ids to set as the Goal's owners. | |
| color | No | Accent color for the Goal as a hex string, e.g. #2ecd6f. |