Skip to main content
GET
/
publisher
/
{publisher_id}
/
newsletter-groups
Newsletter Groups
curl --request GET \
  --url https://cds.thepublive.com/publisher/{publisher_id}/newsletter-groups/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "ok",
  "data": [
    {
      "id": 1,
      "name": "Daily Digest",
      "logo_url": "/media/newsletters/daily-digest.png",
      "description": "Get the top stories delivered to your inbox every morning."
    },
    {
      "id": 2,
      "name": "Weekly Roundup",
      "logo_url": "/media/newsletters/weekly-roundup.png",
      "description": "A curated selection of the week's best stories."
    }
  ],
  "message": ""
}
Returns all configured newsletter groups with their metadata.
publisher_id
string
required
Your Publisher ID
{
  "status": "ok",
  "data": [
    {
      "id": 1,
      "name": "Daily Digest",
      "logo_url": "/media/newsletters/daily-digest.png",
      "description": "Get the top stories delivered to your inbox every morning."
    },
    {
      "id": 2,
      "name": "Weekly Roundup",
      "logo_url": "/media/newsletters/weekly-roundup.png",
      "description": "A curated selection of the week's best stories."
    }
  ],
  "message": ""
}