Parameters
JSON body
Request body
application/jsonidstringRequiredPost external ID.
valuebooleanRequiredTrue to star the post, false to unstar it.
Sets or clears the starred/featured flag on a post. Starred posts appear first in the post list.
JSON body
idstringRequiredPost external ID.
valuebooleanRequiredTrue to star the post, false to unstar it.
1 status code documented
This response returns no JSON body.
{
"success": true
}POST /bff/post/post-toggle-star
curl -X POST "https://api.bizkithub.com/bff/post/post-toggle-star" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"id": "example_id",
"value": false
}'All BizKitHub public API endpoints require authentication via API key.