modifyNote

Back to index

Summary

Modifies a note associated with an entity.
noteName
Stringrequired
The name of the note.
newName
Stringoptional
The new name for an existing object that is being renamed.
note
Stringoptional
This represents the notes provided about the entity.
projectName
Stringoptional
ProjectName of the entity that owns the note.
releaseName
Stringoptional
Name of the release.

Usage

Perl

$cmdr->modifyNote( "test-noteName" # noteName # optionals );

ectool

ectool modifyNote \ "test-noteName" `# noteName` \ # optionals

Examples

Perl

$cmdr->modifyNote("Final Approval", {note => "Not approved until all tests are run"});

ectool

ectool modifyNote "Final Approval" --note "Not approved until all tests are run"