RemoveLikeFromComment
Remove like from a comment.
Stored Procedure Specific Information
Execute
Call this procedure to remove your like from a comment.
To remove your like from a comment, you must specify the following column: CommentId. A successful authentication is also required.
For example:
EXEC RemoveLikeFromComment CommentId=80;
Input
| Name | Type | Description |
| CommentId | Int | The unique identifier of the comment from which the like is removed. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the request to remove the like was completed successfully. |
| ILike | Boolean | Indicates whether the authenticated user currently likes the comment after the operation. |
| LikeCount | Integer | The total number of likes the comment has after the operation. |
| MetaAggregate | String | Contains metadata and response details returned by the WordPress API for the unlike operation. |