GET/notebooks.json

List All Notebooks

Lists all notebooks on projects that the authenticated user is associated with. By default, the actual notebook HTML content is not returned.


Query Params

  • Name
    includeContent
    Type
    boolean
    Description

    You can pass includeContent=true to return the notebook HTML content with the notebook data

    Default
    false

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 Response

Examples

200 Response

application/json
{
  "projects": [
    {
      "notebooks": [
        {
          "project-id": "999",
          "updated-by-userId": "999",
          "read-comments-count": "0",
          "name": "Test notebook",
          "description": "",
          "created-by-userfirstname": "Demo",
          "comments-count": "1",
          "version-id": "9",
          "private": "0",
          "lockdown-id": "",
          "updated-by-userlastname": "User",
          "updated-date": "2014-03-31T11:56:46Z",
          "created-by-userId": "999",
          "created-by-userlastname": "User",
          "category-id": "999",
          "version": "1",
          "user-display-updated-date": "Mon, 31 Mar 2014",
          "user-display-updated-time": "11:56AM",
          "id": "999",
          "nr-comments": "1",
          "updated-by-userfirstname": "Demo",
          "created-date": "2014-03-31T11:56:46Z",
          "locked": "0",
          "category-name": "Demo Notebooks 2"
        }
      ],
      "name": "demo",
      "id": "999"
    }
  ]
}