Parameters
JSON body
Request body
application/jsonurlstringRequiredRSS feed URL to add.
Example
https://example.com/rss.xmlAdds an RSS feed URL. If the URL already exists in the shared feed table, only a relation to the organisation is created. Otherwise a new feed record is inserted first.
JSON body
urlstringRequiredRSS feed URL to add.
https://example.com/rss.xml1 status code documented
successbooleanRequiredfeedIdstringRequiredExternal ID of the feed (existing or newly created).
createdbooleanRequiredTrue if a new feed record was created, false if it already existed.
{
"success": false,
"feedId": "example_feedId",
"created": false
}POST /bff/rss-feed/add
curl -X POST "https://api.bizkithub.com/bff/rss-feed/add" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"url": "https://example.com/rss.xml"
}'All BizKitHub public API endpoints require authentication via API key.