Create task
create-taskCreate a Goby task with title, description, priority, labels, assignees, due date, and estimate. Use an idempotency key to avoid duplicates on retry.
Instructions
Create a Goby task. The key (e.g. OPS-43) is assigned by the server. Status, assignees and labels accept friendly values (semantic/name, email/name, label name) as well as uuids. Goby has no issue types or sprints — use priority (1 highest … 3) and labels.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| due_at | No | ISO 8601 timestamp, e.g. 2026-09-01T00:00:00Z (a bare date like 2026-09-01 is accepted too) | |
| labels | No | Label uuids or names (must already exist on some task) | |
| status | No | Status uuid, semantic (todo|in_progress|blocked|done) or column name. Defaults to the team's first todo column | |
| priority | No | 1 (highest) to 3 | |
| assignees | No | Member uuids, emails or names | |
| description | No | Becomes the task's opening message (markdown) | |
| estimate_hours | No | ||
| idempotency_key | No | Send the same key on a retry to avoid creating the task twice |