deleteNote

Back to index

Summary

Deletes 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->deleteNote( "test-noteName" # noteName # optionals );

ectool

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

Examples

Perl

$cmdr->deleteNote("Approved by ABC", {releaseName => "Production"});

ectool

ectool deleteNote "Approved by ABC" --releaseName "Production"