Batch Create Issues
jira_batch_create_issuesCreate multiple Jira issues in one batch by supplying a JSON array with project key, summary, issue type, and optional description, assignee, or components. Use validate_only to check issues without creating them.
Instructions
Create multiple Jira issues in a batch.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issues | Yes | JSON array of issue objects. Each object should contain: - project_key (required): The project key (e.g., 'PROJ') - summary (required): Issue summary/title - issue_type (required): Type of issue (e.g., 'Task', 'Bug') - description (optional): Issue description in Markdown format - assignee (optional): Assignee username or email - components (optional): Array of component names Example: [ {"project_key": "PROJ", "summary": "Issue 1", "issue_type": "Task"}, {"project_key": "PROJ", "summary": "Issue 2", "issue_type": "Bug", "components": ["Frontend"]} ] | |
| validate_only | No | If true, only validates the issues without creating them |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |