Skip to content
POST/boards

Create a board

Create a new feedback board

Request body

FieldTypeDescription
namerequiredstringBoard name
slugstringURL-friendly slug (auto-generated from name if omitted)
descriptionstringBoard description
isPublicbooleanWhether board is public

Response

Board created

FieldTypeDescription
idrequiredstringTypeID - a type-prefixed UUID
namerequiredstring
slugrequiredstringURL-friendly identifier
descriptionrequiredstring | null
isPublicrequiredboolean
createdAtrequiredstringISO 8601 timestamp
updatedAtrequiredstringISO 8601 timestamp

Errors

400Validation error
401Unauthorized

Example request

curl \
  -X POST \
  "https://feedback.quackback.io/api/v1/boards" \
  -H "Authorization: Bearer qb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "Feature Requests",
  "slug": "feature-requests",
  "description": "example_description",
  "isPublic": false
}'