moveJobs

On this page
Back to index

Summary

Moves jobs from one project to another project.
request
Stringrequired
This parameter and the value displayed are required; request=moveJobs must appear in your query string.
sourceProject
Stringrequired
Source project for jobs.
destinationProject
Stringrequired
Project that will own the jobs.

Usage

Groovy

import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.moveJobs( request: "test-request", sourceProject: "test-sourceProject", destinationProject: "test-destinationProject" )