Notebook API
Get one notebook
GET
/id
(Get one notebook)
Headers
name type data type description Authorization required string Bearer token
Parameters
name type data type description id required string Notebook ID
Responses
http code content-type response 200
application/json
Notebook details
403
application/json
No notebook permission access
Example
GET /614aa2a260318c20a6fed424
Create one notebook
POST
/
(Create one notebook)
Headers
name type data type description Authorization required string Bearer token
Body
name type data type description name required string Notebook name
Responses
http code content-type response 200
application/json
Notebook details
403
application/json
No permission access
Example
POST /
{
"name": "New notebook"
}
Update one notebook
PUT
/id
(Update one notebook)
Headers
name type data type description Authorization required string Bearer token
Parameters
name type data type description id required string Notebook ID
Body
name type data type description name optional string Notebook name version optional string Version ID
Responses
http code content-type response 200
application/json
New updated notebook
403
application/json
No notebook permission access
Example
PUT /614aa2a260318c20a6fed424
{
"name": "My cool notebook"
}