Refresh global feed data
Fetches fresh data from the configured global feed URL and stores it in the broadcast. The global feed must be enabled for the broadcast before calling this endpoint.
post/api/broadcasts.refreshGlobalFeed
Request body
Example request
{
"workspace_id": "ws_1234567890",
"broadcast_id": "broadcast_12345",
"url": "https://api.example.com/feed/global",
"headers": [
{
"name": "Authorization",
"value": "Bearer token123"
}
]
}Response
Global feed data refreshed successfully
Example response
{
"success": true
}