Home
Version 3
Users API

Users API

Remove Organization from the User

DELETE /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.eyJ1c2VyX2lkIjoidWFhLWlkLTExMiIsImVtYWlsIjoiZW1haWwtNzVAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyNDEzNzM2NX0.kHkheERlPpMU4sqAO-sB8vTNUF1kJudkm3U4hZbk0dE
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

Route

DELETE /v2/users/uaa-id-111/organizations/ca621b71-ecc4-458b-b2ad-45c0e56bb08b

cURL

curl "https://api.[your-domain.com]/v2/users/uaa-id-111/organizations/ca621b71-ecc4-458b-b2ad-45c0e56bb08b" -d '' -X DELETE \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTExMiIsImVtYWlsIjoiZW1haWwtNzVAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyNDEzNzM2NX0.kHkheERlPpMU4sqAO-sB8vTNUF1kJudkm3U4hZbk0dE" \
	-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: 04e8a583-4bba-4aae-9c57-379d17a3a9e1
Content-Length: 845
X-Content-Type-Options: nosniff

Status

201 Created

Body

{
  "metadata": {
    "guid": "uaa-id-111",
    "url": "/v2/users/uaa-id-111",
    "created_at": "2015-02-10T01:42:45Z",
    "updated_at": null
  },
  "entity": {
    "admin": false,
    "active": false,
    "default_space_guid": "2118d59e-4502-444f-b76d-8f73595e82db",
    "default_space_url": "/v2/spaces/2118d59e-4502-444f-b76d-8f73595e82db",
    "spaces_url": "/v2/users/uaa-id-111/spaces",
    "organizations_url": "/v2/users/uaa-id-111/organizations",
    "managed_organizations_url": "/v2/users/uaa-id-111/managed_organizations",
    "billing_managed_organizations_url": "/v2/users/uaa-id-111/billing_managed_organizations",
    "audited_organizations_url": "/v2/users/uaa-id-111/audited_organizations",
    "managed_spaces_url": "/v2/users/uaa-id-111/managed_spaces",
    "audited_spaces_url": "/v2/users/uaa-id-111/audited_spaces"
  }
}