Changelog entries
Public release-note style entries published to the org's customer-facing changelog feed.
A changelog entry is a published release note — typically announcing a new feature, bug fix, or improvement. Entries are visible on your organization's public changelog feed and can be syndicated via webhooks or email subscribers.
The API lets you create and list changelog entries. Updating and deleting individual entries is dashboard-only in v1.
The changelog entry object
A unique identifier for the entry (UUID).
The entry title (1–512 chars).
The entry body — typically markdown or rich-text. May be null.
URL-safe slug derived from the title.
Workflow status. Common values: "draft", "published", "scheduled".
Whether this entry is visible on the public-facing changelog page.
URL of the hero image. May be null.
UUID of the user listed as the entry's author. May be null.
ISO 8601 timestamp at which this entry will publish (when status_code = "scheduled"). May be null.
ISO 8601 timestamp at which this entry was published. May be null for drafts.
ISO 8601 timestamp at which the entry was created.
ISO 8601 timestamp of the most recent update.
Example changelog entry object
{
"id": "11ab3ef8-b8cd-cd15-01ba-changelog0001",
"title": "v1.2 release: dark mode + faster search",
"content": "We shipped two of the most-requested features...",
"slug": "v1-2-release",
"status_code": "published",
"show_on_portal": true,
"featured_image_url": null,
"author_id": "cc3c3ef8-b8cd-cd15-01ba-adminuser001",
"scheduled_at": null,
"published_at": "2026-05-01T10:00:00.000Z",
"created_at": "2026-04-30T15:30:00.000Z",
"updated_at": "2026-05-01T10:00:00.000Z"
}
What you can do
Last updated 1 week ago
Built with Documentation.AI