We are using the Jira Cloud Bulk Issue Create API (/rest/api/2/issue/bulk) for enterprise IAM provisioning and are hitting the cost-based rate limit.
Our observed behavior:
Confirmed from 429 response headers:
Ratelimit-Reason: jira-cost-based
X-Ratelimit-Limit: 300000
X-Ratelimit-Remaining: 0
X-Ratelimit-Reset: 2026-06-05T06:00ZQuestions:
While a GET request is a simple read operation and it costs 1 unit, POST requests to create a work item are significantly more expensive as it triggers a chain of backend processes. 🔃
To reduce this a bit, you could try:
Disable Notifications: Use the ?skipNotifications=true parameter to prevent the system from generating and sending emails for every new user provisioned.
👆 I've found this, never used it though, but might be worth a shot.
Can you maybe share the requirement here? How's IAM connected with bulk creation of issues/work items, and why do you need to create so many work items at once?
Cheers,
Tobi
Worth separating two things up front, because provisioning user accounts and creating issues are different APIs with different limits.
A few details in the report don't line up with Atlassian's documented model, so I'd start there:
So for creating 100k issues, design around the per-second burst limit (enforced per tenant and per endpoint), not a per-ticket cost:
If what you actually need is the user accounts rather than issues, that's a different API: the org-level User Provisioning (SCIM) API, which needs Atlassian Guard Standard and an org admin. You drive it from your identity provider (Okta, Entra, and similar), or call the provisioning API directly if your IdP isn't supported. issue/bulk doesn't create accounts.
Sources:
Rate limiting (reason values, points model, pool FAQ):
https://developer.atlassian.com/cloud/jira/platform/rate-limiting/
Bulk create, "Creates upto 50 issues" (current v3 API reference):
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-bulk-post
Understand user provisioning (SCIM, Guard requirement):
https://support.atlassian.com/provisioning-users/docs/understand-user-provisioning/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.