tw.notebooks.get({
includeContent: true
})
GET /projects/{project_id}/notebooks.json
tw.projects.getNotebooks(project_id, options)
GET /notebookCategories/{id}/notebooks.json
tw.notebookCategories.getNotebooks(category_id, options)
GET /notebooks/{notebook_id}.json
tw.notebooks.get({}, notebook_id)
POST /projects/{project_id}/notebooks.json
tw.projects.createNotebook(project_id, {
"notebook": {
// --
}
})
PUT /notebooks/{notebook_id}.json
tw.notebooks.update(notebook_id, {
"notebook": {
// --
}
})
tw.notebooks.lock(notebook_id)
PUT /notebooks/{id}/unlock.json
tw.notebooks.unlock(notebook_id)
tw.notebooks.delete(notebook_id)
PUT /notebooks/{notebook_id}/copy.json
tw.notebooks.copy(notebook_id, {
// --
})
PUT /notebooks/{notebook_id}/move.json
tw.notebooks.move(notebook_id, {
// --
})