Associate Auditor with the Organization by Username
PUT v2/organizations/:guid/auditors
Request
Route
PUT v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/auditors
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/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/auditors" -d '{
"username": "user@example.com"
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTU5IiwiZW1haWwiOiJlbWFpbC0zNUBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDYxOTU4MzkxfQ.bN-yVGwCx6dbTWA_5-PqAWdljY8rowfTejfRPci_j1Q" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "efe6a23b-ff0a-479b-a1c8-3c5831a7d87e",
"url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e",
"created_at": "2016-04-22T19:33:11Z",
"updated_at": null
},
"entity": {
"name": "name-101",
"billing_enabled": false,
"quota_definition_guid": "b0b9dc47-c43e-47d5-99cf-9fcfbbff910c",
"status": "active",
"quota_definition_url": "/v2/quota_definitions/b0b9dc47-c43e-47d5-99cf-9fcfbbff910c",
"spaces_url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/spaces",
"domains_url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/domains",
"private_domains_url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/private_domains",
"users_url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/users",
"managers_url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/managers",
"billing_managers_url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/billing_managers",
"auditors_url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/auditors",
"app_events_url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/app_events",
"space_quota_definitions_url": "/v2/organizations/efe6a23b-ff0a-479b-a1c8-3c5831a7d87e/space_quota_definitions"
}
}
Headers