Home
Version 3
Spaces API

Spaces API

Retrieving the roles of all Users in the Space

GET /v2/spaces/:guid/user_roles

Request

Route

GET /v2/spaces/3e4a1a4b-ff13-4581-885d-0da1e0747fc5/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

Body

Name Description Default Valid Values Example Values

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM5MCIsImVtYWlsIjoiZW1haWwtMjk5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzUxMDI4NjZ9.AcFE1_nHyKB51GDwm_Fg5cncj1qIZJPS1uDemG36lWM
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/spaces/3e4a1a4b-ff13-4581-885d-0da1e0747fc5/user_roles?results-per-page=1&page=1" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM5MCIsImVtYWlsIjoiZW1haWwtMjk5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzUxMDI4NjZ9.AcFE1_nHyKB51GDwm_Fg5cncj1qIZJPS1uDemG36lWM" \
	-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-389",
        "url": "/v2/users/uaa-id-389",
        "created_at": "2015-06-16T23:41:06Z",
        "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-389/spaces",
        "organizations_url": "/v2/users/uaa-id-389/organizations",
        "managed_organizations_url": "/v2/users/uaa-id-389/managed_organizations",
        "billing_managed_organizations_url": "/v2/users/uaa-id-389/billing_managed_organizations",
        "audited_organizations_url": "/v2/users/uaa-id-389/audited_organizations",
        "managed_spaces_url": "/v2/users/uaa-id-389/managed_spaces",
        "audited_spaces_url": "/v2/users/uaa-id-389/audited_spaces"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: d25b365a-5866-4f6d-9a37-0c89c2563c91
Content-Length: 1086
X-Content-Type-Options: nosniff