deleteProject

Back to index

Summary

Deletes a project, including all procedures, procedure steps, and jobs within that project.
projectName
Stringrequired
The name for the project that must be unique among all projects.
foreground
Booleanoptional
True to delete the object in the foreground. The default is to delete the object in the background.

Usage

Perl

$cmdr->deleteProject( "test-projectName" # projectName # optionals );

ectool

ectool deleteProject \ "test-projectName" `# projectName` \ # optionals

Examples

Perl

$cmdr->deleteProject("Default", {foreground => true});

ectool

ectool deleteProject "Default" --foreground true