Hi!
We need create JIRA projects via API, but we don't want create new schemes to each project created, we want create project using existing schemes.
We need to do via API the same happens when we use the option "Create With Shared Configuration" in create project screen.
Is that possible?
Hi Sergio, I was looking for this too, and came across a solution on https://jira.atlassian.com/browse/JRASERVER-27256. As Andry said there, you can use the endpoint:
/rest/project-templates/1.0/createshared/{projectId}
with the JSON:
{"key":"NEWPRJ","name":"Test Project created with shared configuration with TMPLPRJ","lead":"user1"}
where {projectId} is the ID of the project whose configuration you are using. Since this is not documented it is not a formally supported endpoint, but it worked for me. Hope that helps!
Hello Alex, I've been trying to use this endpoint but without success, can you confirm that it still works?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Lucas,
Are you trying with the project key instead of the project ID in the endpoint?
The project key is what precedes the ticket number (such as JRASERVER in the above post) whereas the project ID is what you see when you try to delete a project and observe the five-digit number after pid= in the url.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello. I've been trying to use this endpoint as specified above on JIRA 7.3.6, using the ID number (not the project key) of properly configured project in the endpoint, and I've consistently received code 500 errors in the response, with a PostgreSQL exception complaining that the key I gave for the new project already exists:
Caused by: org.postgresql.util.PSQLException: ERROR: duplicate key value violates unique constraint "idx_project_key"
Detail: Key (pkey)=(DDTPA) already exists.
This seems to occur no matter what key I use, and examining the JIRA instance afterwards, I can confirm that it did actually create a new project with that key, with the name and project lead I specified. Any tips on getting the correct response from this endpoint?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Alright, so I take back my earlier comment insofar as this actually works just fine from curl (response code 200). It's Ansible's uri module that's getting the response with an SQL error, so now I'm focusing on getting Ansible to behave in the same way.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Sergio,
I want the same, but this isn't possible today with the REST API. The only way I am aware of to do this programatically is with the Jira CLI addon https://bobswift.atlassian.net/wiki/spaces/JCLI/pages/266178329/Actions#Actions-createProject
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Josh, if you're still looking for this I figured out a way to do it from the comments on https://jira.atlassian.com/browse/JRASERVER-27256. See my other response below for more details!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Cool - I was only aware of the POST /rest/api/2/project endpoint which doesn't allow setting workflow scheme etc.
Time to automate :)
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi , I was trying to do the same with JIRA API CLoud but i couldn't.
Do you find a way to do it?
Regards.
Pablo.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone,
We've added a new project REST API option to Jira Software Server and Data Center. Starting from Jira 8.6 you will be able to fully automate creating new projects with specific workflowSchemes. We have extended Jira REST API and added a new endpoint and a new parameter:
POST /rest/api/2/project
GET /rest/api/2/project/{projectKeyOrId}/workflowscheme
It’s worth adding that in Jira 8.0 we’ve also added "IssueTypeSchemes" API.
Artur Faruga
Kind regards,
Jira Server Developer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are these features also available for the Jira cloud software via REST API call?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is working for Server, but for cloud not working properly. Project is created with internal server error. Also created project is not getting opened even from jira cloud UI.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
/rest/project-templates/1.0/createshared/{projectId}
with the JSON:
{"key":"NEWPRJ","name":"Test Project created with shared configuration with TMPLPRJ","lead":"user1"}
Above worked for me in Jira 8.5.6 DC
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.
We've been using this endpoint for a while, but today we noticed that it just returns 400 Bad request, without any additional information. Does anyone know if something changed?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nothing has changed on my end. I can still run this endpoint.
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.