getNote

Back to index

Summary

Retrieves a note associated with an entity.
noteName
Stringrequired
The name of the note.
projectName
Stringoptional
ProjectName of the entity that owns the note.
releaseName
Stringoptional
Name of the release.

Usage

Perl

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

ectool

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

Examples

Perl

$cmdr->getNote("Final Approval", {releaseName => "Production"});

ectool

ectool getNote "Final Approval" --releaseName "Production"