Full org chart for the tenant (admin view).
GET
/admin/org-chart
const url = 'https://api.gospl.example/v1/admin/org-chart';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/admin/org-chart \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
Array<object>
object
Example generated
[ { "user": { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "jobTitle": "example", "team": "example" }, "managerId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" }]Missing/invalid credentials.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}Not an admin, or cross-tenant.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}