Skip to content
POST/changelog

Create a changelog entry

Create a new changelog entry

Request body

FieldTypeDescription
titlerequiredstringEntry title
contentrequiredstringEntry content (supports markdown)
publishedAtstringPublish date (omit to save as draft)

Response

Changelog entry created

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

Errors

400Validation error
401Unauthorized

Example request

curl \
  -X POST \
  "https://feedback.quackback.io/api/v1/changelog" \
  -H "Authorization: Bearer qb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "title": "New Dark Mode Feature",
  "content": "example_content",
  "publishedAt": "example_publishedAt"
}'