I am working on a php project which involves JIRA integration. I have searched alot but couldn't find much help. I have a project made in my JIRA and then i want to clone that project and copy all it's tasks and subtasks in it. In short i want to create a ditto copy of it with different name and key obviously and i want to do it over REST API or as the JIRA integration is part of my php project.
Hello @m_affanabid ,
There are not options in the API to copy a project or issues directly, but the process would be to get all the details of the source project and input that into the "Create project" endpoint as the initial step then get the details of each issue in the source project and use that data to create an issues in the new project via a "Create issue" or "Bulk create issue" , Check out the following thread that discusses this process a bit:
Alternatively you could look into add-ons as discussed in the following thread, noting the majority of the apps listed are going to be Server only, but the app Deep Clone for Jira has a cloud version and so does the JIRA Command Line Interface which has a cloneIssue action and a cloneProject action.
Regards,
Earl
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.