v24

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-014382230.2 KB

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

workspace_idstring required

The ID of the workspace

broadcast_idstring required

ID of the broadcast

urlstring uri required

The feed URL to fetch data from

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

successboolean

Whether the refresh was successful

dataobject

The fetched data from the global feed

fetched_atstring date-time

When the data was fetched

errorstring

Error message if the refresh failed

Example response

{
  "success": true
}