List All Categories
HTTP Request
GET https://commerce.zoho.com/store/api/v1/categories
OAuthScope
ZohoCommerce.items.READ
Query Parameters
Parameter | Description |
page | integer: Page number. |
per_page | integer: Number of percentage taxable. |
Request Example
Copiedcurl -X GET
'https://commerce.zoho.com/store/api/v1/categories'
-H 'Authorization: Zoho-oauthtoken ***'
-H 'X-com-zoho-store-organizationid: 682219181'
Success Response
Copied{
"code": 0,
"message": "success",
"categories": [
{
"category_id": "-1",
"name": "ROOT",
"visibility": true,
"show_in_menu": true,
"sibling_order": 1,
"created_time": "",
"parent_category_id": "-1",
"document_id": [],
"depth": 0
},
{...},
{...},
{...},
{...}
],
"page_context": {
"page": 1,
"per_page": 500,
"has_more_page": false,
"report_name": "Categories",
"applied_filter": "All",
"sort_column": "sibling_order",
"sort_order": "A"
}
}
Show full
Show less