Home
Version 3
Users API

Users API

Associate Space with the User

PUT /v2/users/:guid/spaces/:space_guid

Fields

Name Description Default Valid Values Example Values

Parameters

Name Description Valid Values Example Values
guid The guid of the User

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MSIsImVtYWlsIjoiZW1haWwtMjIxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5Nzd9.Aez3Lno6WYz4BuFSfIUqr-Mk5jG1j6Vly3W_WSflP-4
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

Route

PUT /v2/users/uaa-id-290/spaces/48e99175-c559-4f0d-a3ca-71c877d6daee

cURL

curl "https://api.[your-domain.com]/v2/users/uaa-id-290/spaces/48e99175-c559-4f0d-a3ca-71c877d6daee" -d '' -X PUT \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MSIsImVtYWlsIjoiZW1haWwtMjIxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5Nzd9.Aez3Lno6WYz4BuFSfIUqr-Mk5jG1j6Vly3W_WSflP-4" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: c91e312d-6c3f-4067-abfc-8aba8d0ffb83
Content-Length: 850
X-Content-Type-Options: nosniff

Status

201 Created

Body

{
  "metadata": {
    "guid": "uaa-id-290",
    "url": "/v2/users/uaa-id-290",
    "created_at": "2014-12-24T01:39:37+00:00",
    "updated_at": null
  },
  "entity": {
    "admin": false,
    "active": false,
    "default_space_guid": "48e99175-c559-4f0d-a3ca-71c877d6daee",
    "default_space_url": "/v2/spaces/48e99175-c559-4f0d-a3ca-71c877d6daee",
    "spaces_url": "/v2/users/uaa-id-290/spaces",
    "organizations_url": "/v2/users/uaa-id-290/organizations",
    "managed_organizations_url": "/v2/users/uaa-id-290/managed_organizations",
    "billing_managed_organizations_url": "/v2/users/uaa-id-290/billing_managed_organizations",
    "audited_organizations_url": "/v2/users/uaa-id-290/audited_organizations",
    "managed_spaces_url": "/v2/users/uaa-id-290/managed_spaces",
    "audited_spaces_url": "/v2/users/uaa-id-290/audited_spaces"
  }
}