Updating a User
PUT /v2/users/:guid
Request
Route
PUT /v2/users/uaa-id-28
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the User
|
|
|
Body
Name |
Description |
Default |
Valid Values |
Example Values |
default_space_guid
|
The guid of the default space for apps created by this user.
|
|
|
|
admin
|
Whether the user is an admin (Use UAA instead).
|
|
|
|
{
"default_space_guid": "8a07a8a9-338a-429c-b4ca-4084995fc7b0"
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/users/uaa-id-28" -d '{
"default_space_guid": "8a07a8a9-338a-429c-b4ca-4084995fc7b0"
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5IiwiZW1haWwiOiJlbWFpbC0yNEBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDUzODM3MjU0fQ.OO_9I12nyMO6MCKW_aCREmwX49SlkokK9KFi73ctS9A" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "uaa-id-28",
"url": "/v2/users/uaa-id-28",
"created_at": "2016-01-19T19:40:54Z",
"updated_at": "2016-01-19T19:40:54Z"
},
"entity": {
"admin": false,
"active": false,
"default_space_guid": "8a07a8a9-338a-429c-b4ca-4084995fc7b0",
"default_space_url": "/v2/spaces/8a07a8a9-338a-429c-b4ca-4084995fc7b0",
"spaces_url": "/v2/users/uaa-id-28/spaces",
"organizations_url": "/v2/users/uaa-id-28/organizations",
"managed_organizations_url": "/v2/users/uaa-id-28/managed_organizations",
"billing_managed_organizations_url": "/v2/users/uaa-id-28/billing_managed_organizations",
"audited_organizations_url": "/v2/users/uaa-id-28/audited_organizations",
"managed_spaces_url": "/v2/users/uaa-id-28/managed_spaces",
"audited_spaces_url": "/v2/users/uaa-id-28/audited_spaces"
}
}
Headers