create_issue
Create an issue in a project visible to this token. Returns the new issue key. Requires permission to create issues in that project. Answers with 'notified' (who this actually reaches) and 'unresolvedMentions' (what looked like a mention and reached nobody, each with a reason) — a wrong handle is stored as written and never refused, so that list is the only sign it did not land.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Issue type name, e.g. 'Task', 'Bug', 'Story', 'Epic'. Defaults to 'Task'. | |
| labels | No | Labels to set, space or comma separated. | |
| dueDate | No | The day this is due, as YYYY-MM-DD. A calendar day, not a timestamp — do not send a time or a zone. | |
| summary | Yes | Issue summary (title). | |
| assignee | No | Assignee username or email. Omit to leave unassigned. | |
| priority | No | Priority name, e.g. 'High'. | |
| parentKey | No | Parent issue key, to create this as a child/sub-task. | |
| projectKey | Yes | Project key, e.g. 'UK'. | |
| description | No | Issue description. Markdown is kept as written, and carries $…$ / $$…$$ LaTeX formulas and [~username] mentions (the username, which list_users hands you ready-made — never the display name). |