POST
/changelogCreate a changelog entry
Create a new changelog entry
Request body
| Field | Type | Description |
|---|---|---|
titlerequired | string | Entry title |
contentrequired | string | Entry content (supports markdown) |
publishedAt | string | Publish date (omit to save as draft) |
Response
Changelog entry created
| 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 error401UnauthorizedExample 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"
}'