Update the project notepad

We have added the ability to update the project notepad for a project.

Updating the notepad for a project can be accomplished like this:

PUT /v2/projects/:id/notepad

{
  "notepad":"Be sure to ring the doorbell."
}

You can use standard HTML tags to create rich text formatting in the project notepad. Here is an example:

PUT /v2/projects/:id/notepad

{
  "notepad":"<ol><li><strong><em>First bold thing</em></strong></li><li>Second thing</li><li>Third thing</li></ol>"
}