Parameters
JSON body
Request body
application/jsonfeedIdstringRequiredFeed external ID.
Example
a1b2c3d4activebooleanRequiredWhether the feed should be active for this organisation.
Toggles the active flag on the link between the organisation and the feed. Inactive feeds are excluded from sync, AI enrichment, the Newsroom shortlist, and any AI-driven overview or article-writing logic. The flag is per-organisation and does not affect the global feed.
JSON body
feedIdstringRequiredFeed external ID.
a1b2c3d4activebooleanRequiredWhether the feed should be active for this organisation.
1 status code documented
successbooleanRequiredfeedIdstringRequiredFeed external ID.
activebooleanRequiredNew active state.
{
"success": false,
"feedId": "example_feedId",
"active": false
}POST /bff/rss-feed/set-active
curl -X POST "https://api.bizkithub.com/bff/rss-feed/set-active" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"feedId": "a1b2c3d4",
"active": false
}'All BizKitHub public API endpoints require authentication via API key.