Retrieving the roles of all Users in the Space
GET /v2/spaces/:guid/user_roles
Request
Route
GET /v2/spaces/878e91e6-457f-4a2e-b04d-0b2f170258a2/user_roles?results-per-page=1&page=1
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the Space
|
|
|
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/spaces/878e91e6-457f-4a2e-b04d-0b2f170258a2/user_roles?results-per-page=1&page=1" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE2OCIsImVtYWlsIjoiZW1haWwtMTAwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjEzNzQ2Mjl9.v7QLwEgd8B3-QE_WLKizRdBcWXtzC6wfOb8TeCJomGc" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"total_results": 1,
"total_pages": 1,
"prev_url": null,
"next_url": null,
"resources": [
{
"metadata": {
"guid": "uaa-id-167",
"url": "/v2/users/uaa-id-167",
"created_at": "2016-04-16T01:23:49Z",
"updated_at": null
},
"entity": {
"admin": false,
"active": false,
"default_space_guid": null,
"username": "everything@example.com",
"space_roles": [
"space_developer",
"space_manager",
"space_auditor"
],
"spaces_url": "/v2/users/uaa-id-167/spaces",
"organizations_url": "/v2/users/uaa-id-167/organizations",
"managed_organizations_url": "/v2/users/uaa-id-167/managed_organizations",
"billing_managed_organizations_url": "/v2/users/uaa-id-167/billing_managed_organizations",
"audited_organizations_url": "/v2/users/uaa-id-167/audited_organizations",
"managed_spaces_url": "/v2/users/uaa-id-167/managed_spaces",
"audited_spaces_url": "/v2/users/uaa-id-167/audited_spaces"
}
}
]
}
Headers