Skip to content
PATCH/boards/{boardId}

Update a board

Update an existing board

Parameters

NameInTypeDescription
boardIdrequiredpathstringBoard ID

Request body

FieldTypeDescription
namestring
slugstring
descriptionstring | null
isPublicboolean

Response

Board updated

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

Errors

400Validation error
401Unauthorized
404Board not found

Example request

curl \
  -X PATCH \
  "https://feedback.quackback.io/api/v1/boards/:boardId" \
  -H "Authorization: Bearer qb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "example_name",
  "slug": "example_slug",
  "isPublic": false
}'