goteam_id values for a hierarchical filter selection. Accepts selected department IDs, team IDs, and directly selected user goteam_ids, then returns the full set of goteam_ids covering all users — including those not yet loaded due to pagination in the UI tree. All provided IDs are validated to belong to the current tenant before resolution.DepartmentService::resolveGoteamIds() which expands department selections to include all descendant sub-teams and their users.curl --location 'https://api-dev.commandroom.ai/api/api/departments/resolve-user-ids' \
--header 'Authorization: Bearer {{token}}' \
--header 'X-Tenant-UUID: ' \
--header 'Content-Type: application/json' \
--data '{
"department_ids": [
1
],
"team_ids": [
1
],
"user_goteam_ids": [
1
]
}'{
"success": true,
"data": [
1
]
}