Create link between feature and initiative
documentedLink an initiative to a feature.
POST /features/{featureId}/initiativesProduct Hierarchyno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.productboard.com/initiatives" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$title}}", "description": "{{$description}}"}' \
&& \
npx -y keychains@latest curl "https://api.productboard.com/initiatives/{{$initiativeId}}/links/features/{{$featureId}}" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{}'