Blog ·

Jira bulk create: four ways to make many issues at once

To bulk create Jira issues, the built-in route is the CSV importer: put one issue per row in a spreadsheet, save it as CSV, then in Jira Cloud go to Filters, Search work items, the More actions menu, and Import work items from CSV. A space admin can import up to 250 issues per file that way, and a Jira admin gets a fuller importer that handles hierarchies and larger files. If you would rather script it, the REST API creates up to 50 issues in one call. And if the batch you are creating is the same batch you created last month, the fastest bulk create is the one you stop doing by hand at all. This guide covers all four, with what each is good at and where each stops, as of September 2026.

The four ways at a glance #

Method Who can use it Batch size Best for
CSV import from search Space admin with create and bulk change permissions 250 issues per file A one-off list from a spreadsheet
CSV external system import Jira admin Recommended 1,500 per file Migrations, parent and child hierarchies
REST API bulk create Anyone with an API token and create permission 50 issues per request Another system or a script generating issues
A schedule Whoever owns the rule The same set, every cycle Batches that repeat on the calendar

The figures come from Atlassian's own support and developer documentation, read in September 2026. Jira now calls issues "work items" and projects "spaces" in much of its interface, so the menu names below use the new words.

1. Bulk create from a CSV file (no admin needed) #

This is the one most people are looking for. Atlassian's page on the importer puts the requirement plainly:

Users without administrator permissions can import 250 work items per CSV file.

You need the Create work items and Make bulk changes permissions in the target space. Then:

  1. Build the sheet. One row per issue. The header row must contain a Summary column, which is the only required field. Add columns for Work type, Assignee, Priority, Labels, Due date and any custom field you want to fill.
  2. Repeat a column to set several values. Three Labels columns give an issue three labels. The same trick works for components, fix versions and multi-select fields.
  3. Keep the commas. An empty value still needs its comma, or every later column shifts one place left.
  4. Quote anything with a comma or a line break in it, such as a description. Excel and similar tools do this for you when they save as CSV.
  5. Import. In the sidebar select Filters, then Search work items, then More actions (•••), then Import work items from CSV. Choose the file, map each column to a Jira field, and run Validate before Begin import.
  6. Save the configuration at the end if you will import a similar file again. It remembers the column mapping.

The catch that matters most: this quick importer cannot build a hierarchy. Atlassian's page says it "can't map work items with a parent-child hierarchy relationship", so an epic with its stories, or a task with subtasks, needs the admin importer below.

2. The admin CSV importer, for hierarchies and big files #

A Jira administrator reaches the full importer through Settings, System, then External System Import and CSV. It reads the same CSV format with more options:

Atlassian recommends splitting large imports into files of about 1,500 work items, each of which it estimates takes about an hour, and running them at quiet times of day.

3. Bulk create through the REST API #

When the list of issues comes out of another system, a script beats a spreadsheet. Jira Cloud's REST API has a Bulk create issue endpoint (POST /rest/api/3/issue/bulk) that, in the words of Atlassian's developer reference, "creates upto 50 issues and, where the option to create subtasks is enabled in Jira, subtasks".

A few things to know before you write the script:

For a one-time job this is more setup than a CSV. For an integration that runs every day, it is the right tool.

4. Bulk create on a schedule: when the batch repeats #

Look at what your team actually bulk creates. A surprising share of it is the same list every time:

Importing that list from a CSV each cycle works, but it is still a person remembering to do it, editing the dates in the sheet, and running the importer. That is a recurring job wearing a bulk-create costume.

There are two ways to hand it to Jira:

Jira Automation's Scheduled trigger runs a rule on a timetable and can create issues. It is included with Jira, and each run counts against your plan's monthly automation allowance. Our Jira Automation pricing article explains how that allowance is counted, and Jira cron expression covers the timetables a rule can and cannot express.

A scheduling app holds the list for you. Recurring Work Items for Jira is ours, so weigh this part accordingly. You write each rule once in a project: a schedule plus an issue template. It then creates the issue every time the schedule comes round, including:

It does not use your Jira Automation allowance. Its limits: it works within one project at a time, it is Jira Cloud only, and it only creates issues on a schedule. It will not import a spreadsheet of one-off tasks, so for those the CSV importer above is still the tool.

Which method fits your list #

Your situation Use
A spreadsheet of up to 250 new tasks, one time CSV import from search
Epics with stories, or tasks with subtasks, from a file Admin CSV importer
Thousands of issues in a migration Admin CSV importer, in batches
Issues generated by another tool, continuously REST API bulk create
The same set of issues every week, month or quarter A schedule: Automation or a scheduling app

If you are choosing between the two scheduling options, Jira recurring tasks: Automation, cloning, or a scheduling app? compares them in depth. If the batch is really one issue with a fixed set of steps, a Jira subtask template may be all you need.

Common CSV import mistakes #

Most failed imports come down to a handful of problems:

Run Validate before every import. It is much easier to fix a sheet than to clean up 200 half-right issues.

When the manual way is enough #

Bulk creation tools pay off at scale. You can skip them when:

How to start #

  1. Write down the list you want to create and mark whether it is a one-off or repeats.
  2. For a one-off, export a small sample issue to CSV first, so your header row matches your fields.
  3. Import five rows, check them, then import the rest.
  4. For a list that repeats, stop importing it: set it up once as a scheduled rule, in Jira Automation or with Recurring Work Items for Jira, and let the next cycle arrive on its own.