FAQ list

FAQ list

Retrieve faq list

HTTP REQUEST

POST https://app.alphalearn.com/webapi/v1/faq-list

QUERY PARAMETERS

pageSize Integer Number of records to be returned with in a single API call. Default is 20
page Integer Page number of the records.

Example Response:

200 OK
{
    "success": true,
    "data": {
        "faq": [
            {
                "id": "integer",
                "question": "string",
                "answer": "string",
                "status": "integer",
                "companyID": "integer",
                "createdDate": "datetime",
                "updatedDate": "datetime",
                "createdBy": "integer",
                "updatedBy": "integer"
            }
        ]
    }
}