For Developers
Categories
List Categories
categories.list(options);
Retrieve a list of Categories.
Function Arguments
This query allows for standard paging options.
Create Category
categories.create(class_id, category);
Function Arguments
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the class. |
category | Category | The category to create. |
Fetch Category
categories.fetch(class_id, category_id);
Retrieve a Category in a Class.
Function Arguments
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the class. |
category_id | string | The UUID of the category. |
Update Category
categories.update(class_id, category_id, category);
Function Arguments
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the class. |
category_id | string | The UUID of the category. |
category | Category | A partial category object. |
Delete Category
categories.delete(class_id, category_id);
Function Arguments
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the class. |
category_id | string | The UUID of the category. |