get https://api.productboard.com/v2/entities//relationships
Retrieves all relationships associated with a specific Entities. This includes parent, child, and linked entities. Use this endpoint to understand how an entity is connected within the product hierarchy or planning structure.
Code examples
Replace <entity-id>
with the ID of the Entities.
Replace <your-token>
with a valid API token.
Get all relationships of a feature:
curl -X GET "https://api.productboard.com/v2/entities/<entity-id>/relationships" \
-H "Authorization: Bearer <your-token>"
Get relationships of an initiative:
curl -X GET "https://api.productboard.com/v2/entities/<entity-id>/relationships" \
-H "Authorization: Bearer <your-token>"