Skip to content
POST/roadmaps

Create a roadmap

Create a new roadmap

Request body

FieldTypeDescription
namerequiredstringRoadmap name
slugrequiredstringURL-friendly slug
descriptionstringRoadmap description
isPublicbooleanMake roadmap public

Response

Roadmap created

FieldTypeDescription
idrequiredstringTypeID - a type-prefixed UUID
namerequiredstring
slugrequiredstringURL-friendly identifier
descriptionrequiredstring | null
isPublicrequiredbooleanWhether the roadmap is publicly visible
positionrequirednumberDisplay order
createdAtrequiredstringISO 8601 timestamp

Errors

400Validation error
401Unauthorized

Example request

curl \
  -X POST \
  "https://feedback.quackback.io/api/v1/roadmaps" \
  -H "Authorization: Bearer qb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "Product Roadmap",
  "slug": "product-roadmap",
  "description": "example_description",
  "isPublic": false
}'