Checklists Admin Categories
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/checklists-admin-categories/ |
List Checklists Admin Categories |
| GET | /api/checklists-admin-categories/{uuid}/ |
Retrieve |
| POST | /api/checklists-admin-categories/ |
Create |
| PUT | /api/checklists-admin-categories/{uuid}/ |
Update |
| PATCH | /api/checklists-admin-categories/{uuid}/ |
Partial Update |
| DELETE | /api/checklists-admin-categories/{uuid}/ |
Delete |
List Checklists Admin Categories
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
checklists_admin_categories_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
uuid |
string (uuid) |
icon |
string (uri) |
url |
string (uri) |
name |
string |
description |
string |
checklists_count |
integer |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
checklists_admin_categories_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
icon |
string (uri) |
url |
string (uri) |
name |
string |
description |
string |
checklists_count |
integer |
Create
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
ChecklistCategoryRequest - API Source:
checklists_admin_categories_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required |
|---|---|---|
icon |
string (binary) | |
name |
string | ✓ |
description |
string |
201 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
icon |
string (uri) |
url |
string (uri) |
name |
string |
description |
string |
checklists_count |
integer |
Update
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
ChecklistCategoryRequest - API Source:
checklists_admin_categories_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
icon |
string (binary) | |
name |
string | ✓ |
description |
string |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
icon |
string (uri) |
url |
string (uri) |
name |
string |
description |
string |
checklists_count |
integer |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedChecklistCategoryRequest - API Source:
checklists_admin_categories_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
icon |
string (binary) | |
name |
string | |
description |
string |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
icon |
string (uri) |
url |
string (uri) |
name |
string |
description |
string |
checklists_count |
integer |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
checklists_admin_categories_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body