Role Page — role description, team, reporting line.
GET
/users/{userId}/role
const url = 'https://api.gospl.example/v1/users/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/role';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/users/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/role \ --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
FR-20/22 — minimal role data only.
object
Example generated
{ "user": { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "jobTitle": "example", "team": "example" }, "roleDescription": "example", "reportsTo": { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "jobTitle": "example", "team": "example" }}Missing/invalid credentials.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}Not found within the caller’s tenant.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}