deleteDashboardColumn

Back to index

Summary

Deletes a dashboard column.
projectName
Stringrequired
The name for the project that must be unique among all projects.
dashboardName
Stringrequired
Unique name of the dashboard within the project.
column
Stringrequired
The name of the dashboard column.
deleteWidgets
Booleanrequired
Whether to delete the widgets associated with the column that is being deleted.
addToColumn
Stringoptional
The column to which the widgets associated with the column being deleted should be added. Required if deleteWidgets is false, and there are existing widgets in the column being deleted.

Usage

Perl

$cmdr->deleteDashboardColumn( "test-projectName", # projectName "test-dashboardName", # dashboardName "test-column", # column "test-deleteWidgets" # deleteWidgets # optionals );

ectool

ectool deleteDashboardColumn \ "test-projectName" `# projectName` \ "test-dashboardName" `# dashboardName` \ "test-column" `# column` \ "test-deleteWidgets" `# deleteWidgets` \ # optionals

Examples

Perl

$cmdr->deleteDashboardColumn("Default", "Command Center Test", "Development", {deleteWidgets => "false", addToColumn => "Planning"});
$cmdr->deleteDashboardColumn("Default", "Command Center Test", "Development", {deleteWidgets => "true"});

ectool

ectool deleteDashboardColumn "Default" "Command Center Test" "Development" --deleteWidgets "false" --addToColumn "Planning"
ectool deleteDashboardColumn "Default" "Command Center Test" "Development" --deleteWidgets "true"