Get the list of Article Categories
This API can be used to get a list of article categories.
Query Params:
- index - As the articles categories list is limited to 20 per fetch by default, you can use this parameter to fetch the next set of articles categories. If it is not provided, then the index will be taken as 0.
- limit - Number of articles categories to be fetched in a particular request, the default value is 20, and the maximum value is 99.
OAuth Scope:
SalesIQ.articles.READ
URL
Copiedhttps://{zohosalesiq_server_uri}/api/v2/{portal_name}/articlecategories
Example
Copiedhttps://salesiq.zoho.com/api/v2/zylker/articlecategories
Sample Response
Copied{
"url": "/api/v2/zylker/articlecategories",
"object": "articlecategories",
"data": [
{
"id": "53400000000328033",
"name": "General",
"is_default": "true",
"articles_count": 90,
"order": "1"
},
{
"id": "53400000000328053",
"name": "Zylker-Homes",
"is_default": "false",
"articles_count": 20,
"order": "1"
}
]
}