These docs are for v0.1.0. Click to read the latest docs for v1.0.0.

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"
}