List Categories

All API requests should contain authorization headers.

Get a list of categories that have topics.

Request

GET faq/{faqName}/categories

Query Parameters

NameTypeRequiredComments

faqName

string

yes

The name of the FAQ instance for the request

Response

{
    "data": [
        {
            "activeTopicCount": 3,
            "creationTime": "2023-12-19T19:27:42.1780509+00:00",
            "creatorId": "dd5a1046-98c7-4e12-9bc4-1c5aa35cf403",
            "description": "Explore our exquisite collection and learn about our jewelry materials, designs, and craftsmanship to help you make informed purchasing decisions.",
            "id": 450,
            "imageLink": null,
            "isPublished": true,
            "isSticky": false,
            "lastUpdateTime": "2023-12-19T14:27:42.1780509+00:00",
            "publishedTopicCount": 2,
            "title": "Product Information",
            "totalUsefulness": 1,
            "viewCount": 4
        },
        {
            "activeTopicCount": 3,
            "creationTime": "2023-12-19T18:27:50.8519959+00:00",
            "creatorId": "dd5a1046-98c7-4e12-9bc4-1c5aa35cf403",
            "description": "Understand our ordering process, shipping options, customization services, repair, appraisals, and other services we offer to ensure a seamless shopping experience.",
            "id": 451,
            "imageLink": null,
            "isPublished": true,
            "isSticky": false,
            "lastUpdateTime": "2023-12-19T14:27:50.8519959+00:00",
            "publishedTopicCount": 0,
            "title": "Ordering & Services",
            "totalUsefulness": 0,
            "viewCount": 0
        },
        {
            "activeTopicCount": 1,
            "creationTime": "2023-12-19T18:28:09.6997514+00:00",
            "creatorId": "dd5a1046-98c7-4e12-9bc4-1c5aa35cf403",
            "description": "Learn about our payment methods, return policies, store locations, and how to contact our dedicated customer support team for any inquiries or assistance",
            "id": 452,
            "imageLink": null,
            "isPublished": true,
            "isSticky": false,
            "lastUpdateTime": "2023-12-19T14:28:09.6997514+00:00",
            "publishedTopicCount": 0,
            "title": "Policies & Support",
            "totalUsefulness": 0,
            "viewCount": 0
        }
    ],
    "errorCode": -1,
    "errorText": null
}

Data field will contain an array of Category objects.

Last updated