PATCH
/roadmaps/{roadmapId}Update a roadmap
Update an existing roadmap
Parameters
| Name | In | Type | Description |
|---|---|---|---|
roadmapIdrequired | path | string | Roadmap ID |
Request body
| Field | Type | Description |
|---|---|---|
name | string | |
description | string | null | |
isPublic | boolean |
Response
Roadmap updated
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
namerequired | string | |
slugrequired | string | URL-friendly identifier |
descriptionrequired | string | null | |
isPublicrequired | boolean | Whether the roadmap is publicly visible |
positionrequired | number | Display order |
createdAtrequired | string | ISO 8601 timestamp |
Errors
400Validation error401Unauthorized404Roadmap not foundExample 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
}'