Function: getBlogPostLikeCount()
ts
function getBlogPostLikeCount(client, parameters): Promise<{
[key: string]: unknown;
count?: number;
}>;Defined in: src/v2/api/like.ts:25
Returns the count of likes of specific blog post.
Permissions required: Permission to view the content of the blog post and its corresponding space.
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { id: number; } | - |
parameters.id | number | The ID of the blog post for which like count should be returned. |
Returns
Promise<{ [key: string]: unknown; count?: number; }>