Author API Methods
getItemNotes()
Gets the current notes of the Item being edited. The notes attribute can be used to provide notes to other authors on the Item's content when Items are being created and reviewed between multiple authors.
You would want to use this method so that you can make the notes visible, so that authors can see what their colleagues have written about an Item being authored, for example.
Examples
var itemNotes = authorApp.getItemNotes();
console.log(itemNotes);
Arguments
None.
Return value
Type string
The authored notes for the current Item.
Type boolean
Returns false
if not in the Item editor view.
Related articles
- Understanding Item Level Metadata in Author API
- The
setItemNotes()
method, which allows you to set the notes for the Item.