Skip to content
PATCH/changelog/{entryId}

Update a changelog entry

Update an existing changelog entry

Parameters

NameInTypeDescription
entryIdrequiredpathstringChangelog entry ID

Request body

FieldTypeDescription
titlestring
contentstring
publishedAtstring | nullSet to null to unpublish

Response

Changelog entry updated

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
404Changelog entry not found

Example request

curl \
  -X PATCH \
  "https://feedback.quackback.io/api/v1/changelog/:entryId" \
  -H "Authorization: Bearer qb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "title": "example_title",
  "content": "example_content"
}'