Categories
Create Category
POST/categories
This endpoint allows you to create a new category and return the category ID and its details.
`categories.read_write`- Categories Read & Write
List Categories
GET/categories
This endpoint allows you to list all categories related to your store directly from this endpoint. Also, it allows you to filter them using a keyword,...
Category Details
GET/categories/{category}
This endpoint allows you to return the complete details for a specific category by passing the category as a path parameter.
`categories.read`- Cate...
Update Category
PUT/categories/{category}
This endpoint allows you to update category details by passing the category as a path parameter.
`categories.read_write`- Categories Read & Write
Delete Category
DELETE/categories/{category}
This endpoint allows you to delete a specific category by passing the category as a path parameter.
`categories.read_write`- Categories Read & Write...
Category Children
GET/categories/{category}/children
This endpoint allows you to return specific category children by passing the category as a path parameter.
`categories.read`- Categories Read Only
Categories Search
GET/categories/search
This endpoint allows you to search through existing categories using keywords (a.k.a name of the category) as well as an array of Category IDs
`categ...
List Category Products
GET/categories/{id}/products
This endpoint allows you to list all the products and their sort order that are related in a specified category by passing the id as a path parameter....