Retrieving the roles of all Users in the Organization
GET /v2/organizations/:guid/user_roles
Request
Route
GET /v2/organizations/e49f1a00-4701-4353-93bc-8e138f71b87d/user_roles?results-per-page=1&page=1
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the Organization
|
|
|
page
|
Page of results to fetch
|
|
|
results-per-page
|
Number of results per page
|
|
|
order-direction
|
Order of the results: asc (default) or desc
|
|
|
results-per-page: 1
page: 1
Headers
cURL
curl "https://api.[your-domain.com]/v2/organizations/e49f1a00-4701-4353-93bc-8e138f71b87d/user_roles?results-per-page=1&page=1" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE5MyIsImVtYWlsIjoiZW1haWwtMTI5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTMzMTA5Nzl9.H8Zocpn8nZeNON8xw3Isv-9xKS_uP6mmGpZQm4CsM7k" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"total_results": 2,
"total_pages": 2,
"prev_url": null,
"next_url": "/v2/organizations/e49f1a00-4701-4353-93bc-8e138f71b87d/user_roles?order-direction=asc&page=2&results-per-page=1",
"resources": [
{
"metadata": {
"guid": "uaa-id-191",
"url": "/v2/users/uaa-id-191",
"created_at": "2016-01-13T17:29:39Z",
"updated_at": null
},
"entity": {
"admin": false,
"active": false,
"default_space_guid": null,
"username": "everything@example.com",
"organization_roles": [
"org_user",
"org_manager",
"org_auditor",
"billing_manager"
],
"spaces_url": "/v2/users/uaa-id-191/spaces",
"organizations_url": "/v2/users/uaa-id-191/organizations",
"managed_organizations_url": "/v2/users/uaa-id-191/managed_organizations",
"billing_managed_organizations_url": "/v2/users/uaa-id-191/billing_managed_organizations",
"audited_organizations_url": "/v2/users/uaa-id-191/audited_organizations",
"managed_spaces_url": "/v2/users/uaa-id-191/managed_spaces",
"audited_spaces_url": "/v2/users/uaa-id-191/audited_spaces"
}
}
]
}
Headers