Notebooks
Get all notebooks
Section titled “ Get all notebooks ” GET
v3/projects/23423233/notebooks
returns all notebooks for the specified project.
[
{
"id": 412467490,
"title": "Book having requirements",
"created_at": "2016-12-27T12:08:57+00:00",
"updated_at": "2016-12-27T12:11:08+00:00",
"pinned": false,
"by_me": true,
"project": {
"id": "857779124"
},
"creator": {
"id": 242125851
}
},
{
"id": 412467491,
"title": "Blog writing",
"created_at": "2016-12-27T12:08:57+00:00",
"updated_at": "2016-12-27T12:11:08+00:00",
"pinned": false,
"by_me": true,
"project": {
"id": "857779124"
},
"creator": {
"id": 242125851
}
}
] Get notebook
Section titled “ Get notebook ” GET
v3/projects/23423233/notebooks/13964085196
returns the specified notebook.
{
"id": 412467490,
"title": "Book having requirements",
"created_at": "2016-12-27T12:08:57+00:00",
"updated_at": "2016-12-27T12:11:08+00:00",
"pinned": false,
"by_me": true,
"project": {
"id": "857779124"
},
"creator": {
"id": 242125851
}
} Create notebook
Section titled “ Create notebook ” POST
v3/projects/23423233/notebooks
creates a new notebook.
Request Body
{
"title": "Book having requirements"
} 201 Created is returned along with the notebook JSON if the
notebook is created successfully.
403 Forbidden is returned if access is denied.
Update notebook
Section titled “ Update notebook ” PUT
v3/projects/23423233/notebooks/1396408546
updates an existing notebook.
Request Body
{
"title": "Book having requirements for new website"
} 200 OK
is returned along with the updated notebook JSON if the notebook is updated successfully. 403 Forbidden is returned if access is denied.
Delete notebook
Section titled “ Delete notebook ” DELETE
v3/projects/23423233/notebook/1396408546
deletes the specified notebook.
Deleting a notebook permanently removes it and any associated notes. This action cannot be undone.
204 No Content is returned if the notebook is deleted
successfully.
403 Forbidden is returned if access is denied.