createNote

Back to index

Summary

Creates a new note.
note
Stringrequired
This represents the notes provided about the entity.
noteName
Stringoptional
The name of the note.
projectName
Stringoptional
ProjectName of the entity that owns the note.
releaseName
Stringoptional
Name of the release.

Usage

Perl

$cmdr->createNote( "test-note" # note # optionals );

ectool

ectool createNote \ "test-note" `# note` \ # optionals

Examples

Perl

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

ectool

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