I am using jira on premise and trying to get metadata for creating an issue as per this atlassian doc :
https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/
Url used : http://localhost:8080/rest/api/2/issue/createmeta?projectKeys=DEMO&expand=projects.issuetypes.fields
Response :
Hey Saurabh!
Thanks to your post I looked at the docs at https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/ and found the following:
Note that the
createmeta
resource has been reported to cause issues especially on larger instances. These issues have involved the size of the response or Jira running out of memory. That is why we decided to remove this endpoint in Jira 9.0.
The page is now split into "before 8.4" and "after 8.4".
Here they propose three new endpoints as replacement:
http://localhost:8080/rest/api/2/issue/createmeta/{projectIdOrKey}/issuetypes
http://localhost:8080/rest/api/2/issue/createmeta/{projectIdOrKey}/issuetypes/{issueTypeId}
Note that these seem to NOT work with Jira Cloud.
I am running on prem Jira DC 9.1.0 and these endpoints do not seem to work. I am able to get projects but the second URL when requested with my project key or project id return "400 - Bad Request". Any thoughts?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same problem as @Tom Penrose - different error on DC v9.4.3 though:
Via Browser:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Tom,
I've seen 400 responses with no error messages from those endpoints when the requesting user doesn't have permission to create issues in the project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That was the solution for me at least. I found out, that a call to
https://myjiradomain/rest/api/2/issue/createmeta/PKEY/issuetypes?maxResults=5000
with a admin user returned 400.
Once I added the admin user to the project and assigned a role to him, which allows him to create issues in this specific project, the call was possible and successful.
Thanks for the hint!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.