POST
/postsCreate a post
Create a new feedback post. The post is created on behalf of the authenticated API key holder.
Request body
| Field | Type | Description |
|---|---|---|
titlerequired | string | Post title |
contentrequired | string | Post content (optional) |
boardIdrequired | string | Board ID |
statusId | string | Initial status ID |
tagIds | string[] | Tag IDs to assign |
Response
Post created
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
titlerequired | string | |
contentrequired | string | |
voteCountrequired | number | |
boardIdrequired | string | TypeID - a type-prefixed UUID |
statusIdrequired | string | null | |
authorNamerequired | string | null | |
createdAtrequired | string | ISO 8601 timestamp |
updatedAtrequired | string | ISO 8601 timestamp |
Errors
400Validation error401UnauthorizedExample request
curl \
-X POST \
"https://feedback.quackback.io/api/v1/posts" \
-H "Authorization: Bearer qb_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"title": "Add dark mode support",
"content": "It would be great to have...",
"boardId": "board_01h455vb4pex5vsknk084sn02q",
"statusId": "post_01h455vb4pex5vsknk084sn02q",
"tagIds": []
}'