Skip to content
PATCH/roadmaps/{roadmapId}

Update a roadmap

Update an existing roadmap

Parameters

NameInTypeDescription
roadmapIdrequiredpathstringRoadmap ID

Request body

FieldTypeDescription
namestring
descriptionstring | null
isPublicboolean

Response

Roadmap updated

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
404Roadmap not found

Example request

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