PATCH
/changelog/{entryId}Update a changelog entry
Update an existing changelog entry
Parameters
| Name | In | Type | Description |
|---|---|---|---|
entryIdrequired | path | string | Changelog entry ID |
Request body
| Field | Type | Description |
|---|---|---|
title | string | |
content | string | |
publishedAt | string | null | Set to null to unpublish |
Response
Changelog entry updated
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
titlerequired | string | |
contentrequired | string | |
publishedAtrequired | string | null | When the entry was published (null if draft) |
createdAtrequired | string | ISO 8601 timestamp |
updatedAtrequired | string | ISO 8601 timestamp |
Errors
400Validation error401Unauthorized404Changelog entry not foundExample 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"
}'