- GET [/instances/$INSTANCE]/private/categories/$CATEGORY_ID#
This request returns the known products in the given category. Since API version v16.
Required permission:
categories-readResponse:
- 200 Ok:
The body is a CategoryProductListResponse.
Details:
interface CategoryProductListResponse { // Name of the category. name: string; // Translations of the name into various // languages. name_i18n?: { [lang_tag: string]: string }; // The products in this category. products: CategoryProductSummary[]; }
interface CategoryProductSummary { // ID of a product in the category. product_id: string; }