jira_create_issue
Create a new Jira issue by providing project key, summary, description, and issue type, with optional assignee, priority, labels, and custom fields.
Instructions
Creates a new issue in a specified Jira project. Requires project key, summary, description, and issue type. Optional fields include assignee, priority, labels, and custom fields.
On Cloud instances, pass an accountId string for assignee_name (not a username).
Args: project_key: Key of the project to create issue in (e.g., "PROJECT") summary: Issue summary description: Issue description issue_type_name: Type of the issue to create (e.g., "Bug", "Task") assignee_name: Assignee — accountId on Cloud, username on Server/DC (optional) priority_name: Name of the priority (optional) labels: List of labels to add to the issue (optional) custom_fields: Dictionary of custom fields to set (optional)
Returns: JSON object with the key of the new issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labels | No | ||
| summary | Yes | ||
| description | Yes | ||
| project_key | Yes | ||
| assignee_name | No | ||
| custom_fields | No | ||
| priority_name | No | ||
| issue_type_name | Yes |