Blog List

Blog List

List all blogs for a company. The list consist of 6 latest blogs and 6 old blogs.

HTTP REQUEST

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

QUERY PARAMETERS

Field Type Description
No Query Arguments

Example Response:

200 OK
{
    "success": true,
    "data": {
        "latest": [
            {
                "id": "integer",
                "title": "string",
                "description": "string",
                "name": "string",
                "createdDate": "date",
                "image": "string"
            }
        ],
        "old": [
            {
                "id": "integer",
                "title": "string",
                "description": "string",
                "name": "string",
                "createdDate": "date",
                "image": "string"
            }
        ],
    }
}