Home
Version 3
Organizations API

Organizations API

Associate User with the Organization by Username

PUT v2/organizations/:guid/users

Request

Route

PUT v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/users

Parameters

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

Body

Name Description Default Valid Values Example Values
username The user's name
  • user@example.com
{
  "username": "user@example.com"
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM3NCIsImVtYWlsIjoiZW1haWwtMjY0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTQ0NTE2MzJ9.cG7pvTiF39gsWCm_3lUukDeGPZah1NeI1AAF1P4EKOw
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

cURL

curl "https://api.[your-domain.com]v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/users" -d '{
  "username": "user@example.com"
}' -X PUT \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM3NCIsImVtYWlsIjoiZW1haWwtMjY0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTQ0NTE2MzJ9.cG7pvTiF39gsWCm_3lUukDeGPZah1NeI1AAF1P4EKOw" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Status

201 Created

Body

{
  "metadata": {
    "guid": "70572c11-b4ec-404a-b9e0-c4fb4da3103b",
    "url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b",
    "created_at": "2016-01-26T22:20:32Z",
    "updated_at": null
  },
  "entity": {
    "name": "name-2254",
    "billing_enabled": false,
    "quota_definition_guid": "e5d4472b-7ffe-4f53-a334-c08901e8b359",
    "status": "active",
    "quota_definition_url": "/v2/quota_definitions/e5d4472b-7ffe-4f53-a334-c08901e8b359",
    "spaces_url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/spaces",
    "domains_url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/domains",
    "private_domains_url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/private_domains",
    "users_url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/users",
    "managers_url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/managers",
    "billing_managers_url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/billing_managers",
    "auditors_url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/auditors",
    "app_events_url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/app_events",
    "space_quota_definitions_url": "/v2/organizations/70572c11-b4ec-404a-b9e0-c4fb4da3103b/space_quota_definitions"
  }
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 
Content-Length: 1300
X-Content-Type-Options: nosniff