Blog Details
Use this API to list a get individual blog details.
HTTP REQUEST
GET /blog/{blogId}/detail
PATH PARAMETER
| Field | Type | Description |
|---|---|---|
| blogId required |
integer | A 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": []
}
}
}
}
| Field | Type | Description |
| blogId | integer | Blog ID |
| title | string | Blog Title |
| description | string | Blog Description |
| thumbnail | string | Blog Image | status | boolean | Active/Inactive |
| Code | Description |
| 1002 | ‘Invalid blogId’ |
| 1003 | ‘Missing blogId’ |
For general error details, click here.