Skip to main content

Blog

Blog List

Use this API to list all blogs created in the LMS.

 GET /blog/blog-list

Query string parameters

FieldTypeDescription
firstRecord
required
integerFirst record to return. Default: 1
count
required
integerNumber of records to be returned from the first record Default: 20, Max count limit: 100
qstringfilter data by blog title and description
{
"success": true,
"data": {
"response": {
"acknowledgement": "Success",
"data": {
"blogList": [
{
"blogId": 6,
"title": "Training & Upskilling for Professional Growth",
"description": "Training and upskilling are crucial for personal and professional growth. In today’s fast-paced world, staying competitive and relevant in the job market requires a continuous effort to acquire new skills and knowledge. The good news is that there are many ways to achieve this, and it doesn’t have to be time-consuming or expensive.",
"thumbnail": "https://wwww.example.com/thumbnail.png",
"status": true
}
],
"totalRecords": 1
},
"error": {
"code": "",
"internal_message": "",
"moreInfo": []
}
}
}
}

Blog Details

Use this API to list a get individual blog details.

 GET /blog/{blogId}/detail

Path parameters

FieldTypeDescription
blogId
required
integerA single blog ID
{
"success": true,
"data": {
"response": {
"acknowledgement": "Success",
"data": {
"blogDetail": {
"blogId": 6,
"title": "Training & Upskilling for Professional Growth",
"description": "Training and upskilling are crucial for personal and professional growth. In today’s fast-paced world, staying competitive and relevant in the job market requires a continuous effort to acquire new skills and knowledge. The good news is that there are many ways to achieve this, and it doesn’t have to be time-consuming or expensive.",
"thumbnail": "https://wwww.example.com/thumbnail.png",
"status": true
}
},
"error": {
"code": "",
"internal_message": "",
"moreInfo": []
}
}
}
}