Associate Space with the User
PUT /v2/users/:guid/spaces/:space_guid
Request
Route
PUT /v2/users/uaa-id-42/spaces/12e7432f-be4d-424c-a40e-4bb22a9d98c0
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the User
|
|
|
space_guid
|
The guid of the space
|
|
|
Headers
cURL
curl "https://api.[your-domain.com]/v2/users/uaa-id-42/spaces/12e7432f-be4d-424c-a40e-4bb22a9d98c0" -d '' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQzIiwiZW1haWwiOiJlbWFpbC0yMEBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDQxNjYyNTk0fQ.7AYt277Xcsu4RcGvf2-VNU4hp5CMpslB78Zgtc4fU7k" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "uaa-id-42",
"url": "/v2/users/uaa-id-42",
"created_at": "2015-08-31T21:49:54Z",
"updated_at": null
},
"entity": {
"admin": false,
"active": false,
"default_space_guid": "12e7432f-be4d-424c-a40e-4bb22a9d98c0",
"default_space_url": "/v2/spaces/12e7432f-be4d-424c-a40e-4bb22a9d98c0",
"spaces_url": "/v2/users/uaa-id-42/spaces",
"organizations_url": "/v2/users/uaa-id-42/organizations",
"managed_organizations_url": "/v2/users/uaa-id-42/managed_organizations",
"billing_managed_organizations_url": "/v2/users/uaa-id-42/billing_managed_organizations",
"audited_organizations_url": "/v2/users/uaa-id-42/audited_organizations",
"managed_spaces_url": "/v2/users/uaa-id-42/managed_spaces",
"audited_spaces_url": "/v2/users/uaa-id-42/audited_spaces"
}
}
Headers