FAQ

Frequently Asked Questions List

GET ‎https://<domain>/<api prefix>/<version>/faq/get/list/

This API endpoint will return a list of FAQ.

Query Parameters

Name
Type
Description

limit

string

offset

string

question

string

Headers

Name
Type
Description

apikey*

string

Apikey

Authorization*

string

Bearer access token

HTTP/1.1 200 OK
Content-Type: application/json

Body:
{
    "status_code": 200,
    "errors": {},
    "data": {
        "results": [
            {
                "id": <id>,
                "question": "<question>",
                "answer": "<answer>"
            },
            ...
        ],
        "count": 3,
        "previous": <previous_pahe_url>,
        "next": <next_page_url>
    }
}

Sample Code

Node

PHP

Last updated

Was this helpful?