Skip to main content
Skip table of contents

Project Clone (REST API)

Project Clone

To clone a project (without its issues), send a POST request to https://deep-clone-for-jira.[REGION].connect.codefortynine.com/clone/rest/project with the application/json content-type header and the following JSON body:

You have to replace [REGION] with your hostname suffix. You can find out how to determine your suffix here.

JSON
{
    "sourceProjectId": "10000",           // The project ID of the original project.
    "targetProjectKey": "CLONE",          // The key of the new project (must be unique).
    "targetProjectName": "Cloned Project" // The name of the new project (must be unique).
}

Note that only the project is being cloned, including its configuration, versions, and components, but without its issues. Team-managed projects are currently not supported.

If the request was valid, you will receive the following response:

JSON
{
    "clonedProject": { "id": "10001", ... }, // On success, the details of the cloned project, or null if not successful.
    "errorMessage": null                     // String containing an explanatory message if there were any warnings/errors, or null.
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.