Immediate direct reports of a user (tenant-scoped).
GET
/org/users/{userId}/direct-reports
const url = 'https://api.gospl.example/v1/org/users/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/direct-reports';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.gospl.example/v1/org/users/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/direct-reports \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” userId
required
string format: uuid
Responses
Section titled “ Responses ”OK
Media type application/json
Array<object>
object
id
required
string format: uuid
name
required
string
jobTitle
string
team
string
photoUrl
string format: uri
Example generated
[ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "jobTitle": "example", "team": "example", "photoUrl": "https://example.com" }]Missing/invalid credentials.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}Authenticated but not permitted.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}Not found within the caller’s tenant (cross-tenant lookups 404, not 403).
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}