Skip to main content

Blog

Blog List

Use this API to list all blogs.

 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": "Test Title",
"description": "Test",
"thumbnail": "",
"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": "Test Title",
"description": "test",
"thumbnail": "../image.jpg",
"status": true
}
},
"error": {
"code": "",
"internal_message": "",
"moreInfo": []
}
}
}
}