Spaces API

Retrieving the roles of all Users in the Space

GET /v2/spaces/:guid/user_roles

Request

Route

GET /v2/spaces/9ccd6395-e083-4396-b4bf-99cbc8742827/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

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM2NCIsImVtYWlsIjoiZW1haWwtMjU3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg5MDB9.450Sg6BnnMV7PQSoewokjL7_Mnogffx_07cwnI7cMVk
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/spaces/9ccd6395-e083-4396-b4bf-99cbc8742827/user_roles?results-per-page=1&page=1" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM2NCIsImVtYWlsIjoiZW1haWwtMjU3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg5MDB9.450Sg6BnnMV7PQSoewokjL7_Mnogffx_07cwnI7cMVk" \
	-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-363",
        "url": "/v2/users/uaa-id-363",
        "created_at": "2016-06-08T16:41:40Z",
        "updated_at": "2016-06-08T16:41:26Z"
      },
      "entity": {
        "admin": false,
        "active": false,
        "default_space_guid": null,
        "username": "[email protected]",
        "space_roles": [
          "space_developer",
          "space_manager",
          "space_auditor"
        ],
        "spaces_url": "/v2/users/uaa-id-363/spaces",
        "organizations_url": "/v2/users/uaa-id-363/organizations",
        "managed_organizations_url": "/v2/users/uaa-id-363/managed_organizations",
        "billing_managed_organizations_url": "/v2/users/uaa-id-363/billing_managed_organizations",
        "audited_organizations_url": "/v2/users/uaa-id-363/audited_organizations",
        "managed_spaces_url": "/v2/users/uaa-id-363/managed_spaces",
        "audited_spaces_url": "/v2/users/uaa-id-363/audited_spaces"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 00ba9bcf-202d-4b51-8de9-40ee1a1e031a
Content-Length: 1086
X-Content-Type-Options: nosniff