Operation Id:
products/categories/get [Official Documentaction]
Methods
- ids Array<Integer>
- languages Array<String>
- results_page Integer
- results_limit Integer
- return_last_changed_time String
Examples
This function returns the product categories in the Polish language.
Loading editor...
const result = await idosellRequest.getProductsCategories .languages(["pol"]) .exec();
This function retrieves the products categories for page 2 with a maximum of 10 categories per page.
Loading editor...
const result = await idosellRequest.getProductsCategories .page(2,10) .exec();
This function retrieves the product categories' ids for the given list of product ids.
Loading editor...
const result = await idosellRequest.getProductsCategories .ids([1214553885]) .exec();