Marketplace Category Groups
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/marketplace-category-groups/ |
List category groups |
| GET | /api/marketplace-category-groups/{uuid}/ |
Retrieve a category group |
| POST | /api/marketplace-category-groups/ |
Create a category group |
| PUT | /api/marketplace-category-groups/{uuid}/ |
Update a category group |
| PATCH | /api/marketplace-category-groups/{uuid}/ |
Partially update a category group |
| DELETE | /api/marketplace-category-groups/{uuid}/ |
Delete a category group |
List category groups
Returns a paginated list of category groups.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
marketplace_category_groups_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
field |
array | |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
title |
string |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
title |
string |
description |
string |
icon |
string (uri) |
Retrieve a category group
Returns details of a specific category group.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
marketplace_category_groups_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Name | Type |
|---|---|
field |
array |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
title |
string |
description |
string |
icon |
string (uri) |
Create a category group
Creates a new category group. Requires staff permissions.
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
CategoryGroupRequest - API Source:
marketplace_category_groups_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required |
|---|---|---|
title |
string | ✓ |
description |
string | |
icon |
string (binary) |
201 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
title |
string |
description |
string |
icon |
string (uri) |
Update a category group
Updates an existing category group. Requires staff permissions.
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:
CategoryGroupRequest - API Source:
marketplace_category_groups_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 |
|---|---|---|
title |
string | ✓ |
description |
string | |
icon |
string (binary) |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
title |
string |
description |
string |
icon |
string (uri) |
Partially update a category group
Partially updates an existing category group. Requires staff permissions.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedCategoryGroupRequest - API Source:
marketplace_category_groups_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
title |
string | |
description |
string | |
icon |
string (binary) |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
title |
string |
description |
string |
icon |
string (uri) |
Delete a category group
Deletes a category group. Requires staff permissions.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
marketplace_category_groups_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body