createDashboardColumn

Back to index

Summary

Creates 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.
afterColumn
Stringoptional
The name of the column after which the column should be placed. When creating the column, if neither beforeColumn nor afterColumn are specified, then the column is added as the last column in the dashboard.
beforeColumn
Stringoptional
The name of the column before which the column should be placed. When creating the column if neither beforeColumn nor afterColumn are specified, then the column is added as the last column in the dashboard.

Usage

Perl

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

ectool

ectool createDashboardColumn \ "test-projectName" `# projectName` \ "test-dashboardName" `# dashboardName` \ "test-column" `# column` \ # optionals

Examples

Perl

$cmdr->createDashboardColumn("Default", "Command Center Test", "Development", {afterColumn => "Planning"});

ectool

ectool createDashboardColumn "Default" "Command Center Test" "Testing" --beforeColumn "SystemTest"