getBlogPostLikeCount
Get like count for blog post
GET /blogposts/{id}/likes/count HTTP/1.1Parameters
{
"id": {
"description": "The ID of the blog post for which like count should be returned.",
"required": true,
"location": "path",
"type": "integer",
"format": "int64"
}
}Response Schema
{
"title": "Integer",
"type": "object",
"properties": {
"count": {
"type": "integer",
"format": "int64",
"description": "The count number"
}
}
}