Front.fetchNotes(callback)
Sends you the notes written for the conversation recipient.
The callback's notes
parameter will contain an array of note.
callback: function
A callback function.
Front.fetchNotes(function (notes) {
console.log(notes);
});
Sample JSON for a note:
{
"body": "Awesome note!",
"text": "Awesome note!",
"html": "<p>Awesome note!</p>\n",
"date": 1456348516603,
"author": "teammate"
}