Skip to content
POST/roadmaps/{roadmapId}/posts

Add a post to a roadmap

Add an existing post to a roadmap

Parameters

NameInTypeDescription
roadmapIdrequiredpathstringRoadmap ID

Request body

FieldTypeDescription
postIdrequiredstringPost ID to add

Response

Post added to roadmap

FieldTypeDescription
messagerequiredstring
roadmapIdrequiredstring
postIdrequiredstring

Errors

400Validation error
401Unauthorized
404Roadmap or post not found
409Post already in roadmap

Example request

curl \
  -X POST \
  "https://feedback.quackback.io/api/v1/roadmaps/:roadmapId/posts" \
  -H "Authorization: Bearer qb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "postId": "post_01h455vb4pex5vsknk084sn02q"
}'