Example Object
{
  "type": "note",
  "id": "16",
  "created_at": 1389913941,
  "body": "<p>Text for my note</p>",
  "author": {
    "type": "admin",
    "id": "21",
    "name": "Jayne Cobb",
    "email": "[email protected]",
    "companies": []
  },
  "user": {
    "type": "user",
    "id": "5310d8e8598c9a0b24000005"
  }
}
Note Object
| Attribute | Type | Description | 
|---|---|---|
| type | string | value is 'note' | 
| id | string | The id representing the note | 
| created_at | timestamp | The time the note was created | 
| user | User | The user the note was created about | 
| body | string | The body text of the note. | 
| author | Admin | Optional. Represents the Admin that created the note |