Disassociate User with the Organization by Username
DELETE v2/organizations/:guid/users
Request
Route
DELETE v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/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
|
|
|
|
{
"username": "user@example.com"
}
Headers
cURL
curl "https://api.[your-domain.com]v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/users" -d '{
"username": "user@example.com"
}' -X DELETE \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQzNCIsImVtYWlsIjoiZW1haWwtMzEzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDk1MzE1Mzl9.n0RP84JkM7LszYDoMffcAjFnqnySXZPtTP2dx0r5Pk4" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a",
"url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a",
"created_at": "2015-11-30T23:38:59Z",
"updated_at": null
},
"entity": {
"name": "name-2512",
"billing_enabled": false,
"quota_definition_guid": "e61392ed-aa92-4358-8d16-8499b61917a0",
"status": "active",
"quota_definition_url": "/v2/quota_definitions/e61392ed-aa92-4358-8d16-8499b61917a0",
"spaces_url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/spaces",
"domains_url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/domains",
"private_domains_url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/private_domains",
"users_url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/users",
"managers_url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/managers",
"billing_managers_url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/billing_managers",
"auditors_url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/auditors",
"app_events_url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/app_events",
"space_quota_definitions_url": "/v2/organizations/f8ab2c91-1eb9-431b-bb26-ab492b0e2a8a/space_quota_definitions"
}
}
Headers