v1

latestOpenAPI 3.1.02026-07-2295105298.6 KB
Content

List Content Hub Sheets

Returns the Content Hub tabs configured for a website. Each tab is either a sheet (content pinned via content.sheet_id) or a view (saved filter layout over the main content pool). Call this first to discover the sheet_ids you can pass to POST /api/v1/content.

get/api/v1/content/sheets

Query parameters

website_idstring uuid required

The website to list sheets for.

Response

Successful response with the list of sheets, ordered by position ascending.

Example response

{
  "sheets": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "Reddit Mentions",
      "sheet_type": "sheet",
      "position": 1,
      "created_at": "2024-01-01T00:00:00.000Z",
      "updated_at": "2024-02-15T12:34:56.000Z"
    }
  ]
}