Concepts
Categories in the Zencargo platform are used to group and organise products. Each category can be associated with multiple products.
They are typically created prior to creating or during the creation of a product.
Below is an overview of how categories are stored in the Zencargo platform.
| Field Name | Description | Example Value |
|---|---|---|
| id | The id of the category, this is autogenerated by the zencargo platform during category creation | cfeeb6ee-91c4-46b1-9411-71185d359324 |
| name | The name of the category | Clothing |
Below is a json payload showing an example of a category.
{
"name": "Electronics",
"id": "73c513ce-c584-46e4-9c51-ddb7aba22575"
}
Next Steps
- Create Category - Learn how to create a category
- Query Category - Learn how to query a category
- Update Category - Learn how to update a category
- Delete Category - Learn how to delete a category
- Making your first call - If you're not sure how GraphQL works, start here.