List Tags

All API requests should contain authorization headers.

Request

GET faq/{faqName}/tags

Query Parameters

NameTypeRequiredComments

faqName

string

yes

The name of the FAQ instance for the request

Response

{
    "data": [
        {
            "id": 444,
            "name": "Support"
        },
        {
            "id": 443,
            "name": "Silver"
        },
        {
            "id": 437,
            "name": "Rings"
        },
        {
            "id": 442,
            "name": "Platinum"
        },
        {
            "id": 439,
            "name": "Pendants"
        },
        {
            "id": 438,
            "name": "Necklaces"
        },
        {
            "id": 441,
            "name": "Gold"
        },
        {
            "id": 440,
            "name": "Earrings"
        }
    ],
    "errorCode": -1,
    "errorText": null
}

Data field will contain an array of Tag objects.

Last updated