Goto Home
🔒 POST /likes
Description
- Create a new like
- One and only one of
reel or comment should be given
- Update likes count on that corresponding reel/comment
- Notify user with event
reel-liked or comment-liked, but only if the user is different
Request Body
{
reel?: '6899c1bbabe4f0b09ab85a46',
comment?: '689c33c805d06cb919e301d3',
}
🔒 DELETE /likes
Description
- Deletes the like
- One and only one of
reel or comment should be given
- Update likes count on that corresponding reel/comment
Request Body
{
reel?: '6899c1bbabe4f0b09ab85a46',
comment?: '689c33c805d06cb919e301d3',
}
Links
Goto Home