delete https://api.productboard.com/v2/entities//relationships//
Removes a relationship between two Entities.
Use the type
query parameter to indicate which kind of relationship you want to remove.
Code examples
Replace <entity-id>
with the ID of the source entity.
Replace <target-id>
with the ID of the related entity.
Replace <your-token>
with a valid API token.
Unlink a feature from its parent component:
curl -X DELETE "https://api.productboard.com/v2/entities/<entity-id>/relationships/parent/<target-id>" \
-H "Authorization: Bearer <your-token>"
Remove a child subfeature from a feature:
curl -X DELETE "https://api.productboard.com/v2/entities/<entity-id>/relationships/child/<target-id>" \
-H "Authorization: Bearer <your-token>"
Delete a link between two initiatives:
curl -X DELETE "https://api.productboard.com/v2/entities/<entity-id>/relationships/link/<target-id>" \
-H "Authorization: Bearer <your-token>"