Skip to content
GET/changelog

List changelog entries

Returns changelog entries with optional filtering by published status

Parameters

NameInTypeDescription
publishedquery"true" | "false"Filter by published status
cursorquerystringPagination cursor for next page
limitqueryintegerItems per page(default: 20)

Response

List of changelog entries

Returns an array of objects:

FieldTypeDescription
idrequiredstringTypeID - a type-prefixed UUID
titlerequiredstring
contentrequiredstring
publishedAtrequiredstring | nullWhen the entry was published (null if draft)
createdAtrequiredstringISO 8601 timestamp
updatedAtrequiredstringISO 8601 timestamp

Errors

401Unauthorized

Example request

curl \
  "https://feedback.quackback.io/api/v1/changelog" \
  -H "Authorization: Bearer qb_your_api_key_here"