jira_issues_create
Create a Jira issue by specifying project key, issue type, and summary, with optional fields for description, assignee, priority, labels, and custom fields.
Instructions
Create a new Jira issue.
Use jira_issues_get_createmeta first to check required fields for the project/issue type. Custom fields must use their field ID (customfield_XXXXX). Returns: {key, id} of the created issue.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_key | Yes | Project key, e.g. 'PROJ', 'OPS' | |
| issue_type | Yes | Issue type name, e.g. 'Task', 'Bug', 'Story' | |
| summary | Yes | Issue summary/title | |
| description | No | Plain text or ADF JSON string. Plain text is auto-converted. | |
| assignee_account_id | No | Assignee's account ID from jira_users_search | |
| priority | No | Priority: 'Highest', 'High', 'Medium', 'Low', 'Lowest' | |
| labels | No | List of label strings | |
| custom_fields | No | Dict of custom field ID to value, e.g. {'customfield_10001': {'value': 'High'}} |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||