Skip to content

Notes

GET v3/projects/23423233/notebooks/41246749/notes returns all notes in the specified notebook.
[
  {
    "id": 80731707,
    "title": "Requirements for launch party",
    "private": false,
    "assigned": [12009183],
    "comments": 0
  },
  {
    "id": 80731708,
    "title": "Launch of the New Website",
    "private": false,
    "assigned": [12009183],
    "comments": 0
  }
]
GET v3/projects/23423233/notebooks/41246749/notes/80731708 returns the specified note.
{
  "id": 80731708,
  "title": "Launch of the New Website",
  "content": "A post on our Blog ...",
  "private": false,
  "assigned": [12009183]
}
POST v3/projects/23423233/notebooks/41246749/notes creates a new note.
{
  "title": "Requirements",
  "description": "Requirements for designing",
  "content": "Mention all that will be required for designing a LOGO for the client.",
  "private": true,
  "assigned": [12009183, 11679192]
}

The assigned array is optional and accepts people IDs.

201 Created is returned along with the created note.
PUT v3/projects/23423233/notebooks/41246749/notes/80731709 updates an existing note.
{
  "title": "Requirements",
  "description": "Requirements for designing the LOGO",
  "content": "Mention all that will be required for designing a LOGO for the client.",
  "private": false
}
200 OK is returned along with the updated note.
PUT v3/projects/23423233/notebooks/41246749/notes/80731708 deletes the specified note.
204 No Content is returned if the note is deleted successfully.
GET v3/projects/23423233/notebooks/41246749/notes/80731708/comments returns all comments for the specified note.
[
  {
    "id": 36215469,
    "description": "Design of website completed",
    "status": "open"
  },
  {
    "id": 36215467,
    "description": "Content updated",
    "status": "open"
  }
]
GET v3/projects/23423233/notebooks/41246749/notes/80731708/comments/36215469 returns the specified comment.
{
  "id": 36215469,
  "description": "Design of website completed",
  "status": "open"
}
POST v3/projects/23423233/notebooks/41246749/notes/13966758232/comments creates a new comment.
{
  "description": "Meeting with the client"
}
PUT v3/projects/23423233/notebooks/41246749/notes/13966758232/comments/30438075 updates a comment.
{
  "description": "Call with client"
}
DELETE v3/projects/23423233/notebooks/41246749/notes/13966758232/comments/30438075 deletes the specified comment.
204 No Content is returned if the comment is deleted successfully.

Changes the status of a comment to resolved.

{
  "status": "resolved"
}

Changes the status of a resolved comment back to open.

{
  "status": "open"
}
All comment update, resolve, and reopen operations return 200 OK when successful and 204 No Content when access is denied.