POST
/roadmapsCreate a roadmap
Create a new roadmap
Request body
| Field | Type | Description |
|---|---|---|
namerequired | string | Roadmap name |
slugrequired | string | URL-friendly slug |
description | string | Roadmap description |
isPublic | boolean | Make roadmap public |
Response
Roadmap created
| 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 error401UnauthorizedExample 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
}'