GET/projects/{id}/notebookCategories.json

Retrieving all of a Notebook Categories

All the notebook categories for your project will be returned.


Path Params

  • Name
    id
    Type
    string
    required
    Description

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 Response

Examples

200 Response

application/json
{
  "categories": [
    {
      "project-id": "999",
      "parent-id": "999",
      "name": "Demo Category",
      "count": "0",
      "id": "999",
      "elements_count": "0",
      "type": "FileCategory"
    },
    {
      "project-id": "999",
      "parent-id": "999",
      "name": "Demo Category 2",
      "count": "0",
      "id": "1000",
      "elements_count": "0",
      "type": "FileCategory"
    }
  ]
}