Create issue
jira_create_issueCreate a Jira issue by specifying project, issue type, and summary, with support for description formats, custom fields, labels, parent, priority, and assignee.
Instructions
Create one issue. project and issueType are instance-specific — resolve them with jira_list_projects and jira_get_create_meta, which also names the custom fields this project requires. description takes plain text (converted to ADF) or a raw ADF document; format: "markdown" parses a string description as the markdown subset. Assignees are accountId only. Custom fields go in fields under their customfield_10xxx id. A sprint cannot be set here: create first, then jira_move_to_sprint.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apply | No | Set true to EXECUTE this write. Omit (or false) to get a plan of the request that would be sent. Executing also requires the server to run with JIRA_WRITE_MODE=apply. | |
| fields | No | Raw field passthrough, keyed by Jira field id (customfield_10011). Values are sent as given; jira_get_create_meta shows the shape each field wants. | |
| format | No | How to interpret a string rich-text input: "text" (default — blank lines split paragraphs, single newlines are hard breaks) or "markdown" (the documented subset: headings, lists, code fences, bold/italic/code, links). Refused alongside a raw ADF document. | |
| labels | No | Labels to set on the new issue. | |
| parent | No | Parent issue key or id — the epic of a story, the story of a subtask. | |
| plan_id | No | The single-use id returned by the preceding plan-mode call. Required together with apply: true; a mismatch means the arguments changed since the plan, and the write is refused rather than executed. | |
| profile | No | Named credential profile for this call. Omit to use the active profile. Rejected when the server locks the profile (JIRA_LOCK_PROFILE). | |
| project | Yes | Project key (PROJ) or numeric project id. | |
| summary | Yes | The one-line title. Required by every project. | |
| priority | No | Priority name (High) or id. | |
| issueType | Yes | Issue type name (Task, Bug) or numeric id. | |
| description | No | Plain text (converted to ADF) or a raw ADF document. | |
| assigneeAccountId | No | Atlassian accountId — the ONLY user identifier Jira Cloud accepts. Turn a display name or email into one with jira_search_users. |