List 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.
The source entity is implicit (this entity).
Path parameters
A universally unique identifier (UUID).
Entity identifier.
Query parameters
The type of the relationship to be established.
Relationships
- parent: Hierarchical relationship indicating the entity is a child of the target
- child: Hierarchical relationship indicating the entity contains the target
- link: Generic bidirectional relationship without semantic meaning
- isBlockedBy: Dependency relationship indicating the entity cannot proceed until the target is resolved
- isBlocking: Dependency relationship indicating the entity prevents progress on the target
The type of the relationship to filter by (optional)
Supported Entity types:
- product
- component
- feature
- subfeature
- initiative
- objective
- keyResult
- release
- releaseGroup
- company
- user
The exact types available may vary based on the configuration of the workspace.
The entity type of the target to filter relationships by (optional)
A universally unique identifier (UUID).
The ID of the target entity to filter the relationships by (optional)
Cursor for pagination. Use the value from links.next to fetch the next page.
Response
A paginated list of relationships
Example response
{
"data": [
{
"target": {
"id": "123e4567-e89b-12d3-a456-426614174000"
}
}
]
}