Home
Version 3
Users API

Users API

List all Managed Spaces for the User

GET /v2/users/:guid/managed_spaces

Fields

Name Description Default Valid Values Example Values

Parameters

Name Description Valid Values Example Values
guid The guid of the User
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: name, organization_guid, developer_guid, app_guid
  • q=filter:value
  • q=filter>value
  • q=filter IN a,b,c
page Page of results to fetch
results-per-page Number of results per page
order-direction Order of the results: asc (default) or desc
inline-relations-depth 0 - don't inline any relations and return URLs. Otherwise, inline to depth N.
orphan-relations 0 - de-duplicate object entries in response
exclude-relations comma-delimited list of relations to drop from response
include-relations comma-delimited list of the only relations to include in response

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTMyMiIsImVtYWlsIjoiZW1haWwtMjM1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5Nzh9.ac09cfoXIyJh92QCcLHn69zCvB0DxWfaAkul9yxzCiA
Host: example.org
Cookie: 

Route

GET /v2/users/uaa-id-321/managed_spaces

cURL

curl "https://api.[your-domain.com]/v2/users/uaa-id-321/managed_spaces" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTMyMiIsImVtYWlsIjoiZW1haWwtMjM1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5Nzh9.ac09cfoXIyJh92QCcLHn69zCvB0DxWfaAkul9yxzCiA" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 7d4815be-9fe1-4060-ae6c-523cbd109a86
Content-Length: 1463
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "f67ab03b-3def-4ee6-98ae-64bebe3c753a",
        "url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a",
        "created_at": "2014-12-24T01:39:38+00:00",
        "updated_at": null
      },
      "entity": {
        "name": "name-1830",
        "organization_guid": "b386ab2e-0915-4cf5-8b07-fd313da29531",
        "space_quota_definition_guid": null,
        "organization_url": "/v2/organizations/b386ab2e-0915-4cf5-8b07-fd313da29531",
        "developers_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/developers",
        "managers_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/managers",
        "auditors_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/auditors",
        "apps_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/apps",
        "routes_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/routes",
        "domains_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/domains",
        "service_instances_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/service_instances",
        "app_events_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/app_events",
        "events_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/events",
        "security_groups_url": "/v2/spaces/f67ab03b-3def-4ee6-98ae-64bebe3c753a/security_groups"
      }
    }
  ]
}