Home
Version 3
Users API

Users API

Associate Organization with the User

PUT /v2/users/:guid/organizations/:organization_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.eyJ1c2VyX2lkIjoidWFhLWlkLTE0MCIsImVtYWlsIjoiZW1haWwtMTA3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MDN9.3v37EtXMmavn2ECBye88KqoOps5LGJPFgw287ZfRRjU
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

Route

PUT /v2/users/uaa-id-139/organizations/3ef32770-654a-4b50-8928-5322bbde849b

cURL

curl "https://api.[your-domain.com]/v2/users/uaa-id-139/organizations/3ef32770-654a-4b50-8928-5322bbde849b" -d '' -X PUT \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE0MCIsImVtYWlsIjoiZW1haWwtMTA3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MDN9.3v37EtXMmavn2ECBye88KqoOps5LGJPFgw287ZfRRjU" \
	-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: c0e90904-145b-490f-ae26-78e219eacd31
Content-Length: 850
X-Content-Type-Options: nosniff

Status

201 Created

Body

{
  "metadata": {
    "guid": "uaa-id-139",
    "url": "/v2/users/uaa-id-139",
    "created_at": "2014-11-13T23:38:23+00:00",
    "updated_at": null
  },
  "entity": {
    "admin": false,
    "active": false,
    "default_space_guid": "5dc022e7-50f5-4b73-9492-ddfa616e1e1d",
    "default_space_url": "/v2/spaces/5dc022e7-50f5-4b73-9492-ddfa616e1e1d",
    "spaces_url": "/v2/users/uaa-id-139/spaces",
    "organizations_url": "/v2/users/uaa-id-139/organizations",
    "managed_organizations_url": "/v2/users/uaa-id-139/managed_organizations",
    "billing_managed_organizations_url": "/v2/users/uaa-id-139/billing_managed_organizations",
    "audited_organizations_url": "/v2/users/uaa-id-139/audited_organizations",
    "managed_spaces_url": "/v2/users/uaa-id-139/managed_spaces",
    "audited_spaces_url": "/v2/users/uaa-id-139/audited_spaces"
  }
}