Team $team) to resolve the team by ID. Loads parent and children relations.path field shows the full hierarchical path (e.g. 'Engineering > Backend > API Team') using the Team::getPath() method.curl --location 'https://api-dev.commandroom.ai/api/api/teams/12' \
--header 'Authorization: Bearer {{token}}' \
--header 'X-Tenant-UUID: '{
"success": true,
"data": {
"id": 1,
"name": "Sample Name",
"description": "Sample description text.",
"is_active": true,
"sort_order": 1,
"data": {},
"path": "string",
"tasks_count": 10,
"children_count": 10,
"parent": {
"id": 1,
"name": "Sample Name"
}
}
}