Home
Version 3
Organizations API

Organizations API

Associate Auditor with the Organization

PUT /v2/organizations/:guid/auditors/:auditor_guid

Fields

Name Description Default Valid Values Example Values

Parameters

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

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI3OSIsImVtYWlsIjoiZW1haWwtMjEyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5NzZ9.Kj5w0dcrZ-xmCNQh3-BcD_awOK6V9xiFXCyUmbA0ckw
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

Route

PUT /v2/organizations/77c93901-8769-4f17-b630-724948404062/auditors/uaa-id-278

cURL

curl "https://api.[your-domain.com]/v2/organizations/77c93901-8769-4f17-b630-724948404062/auditors/uaa-id-278" -d '' -X PUT \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI3OSIsImVtYWlsIjoiZW1haWwtMjEyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5NzZ9.Kj5w0dcrZ-xmCNQh3-BcD_awOK6V9xiFXCyUmbA0ckw" \
	-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: 3ecc9572-8b12-49ab-a93e-dd7d7a10631c
Content-Length: 1305
X-Content-Type-Options: nosniff

Status

201 Created

Body

{
  "metadata": {
    "guid": "77c93901-8769-4f17-b630-724948404062",
    "url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062",
    "created_at": "2014-12-24T01:39:36+00:00",
    "updated_at": null
  },
  "entity": {
    "name": "name-1715",
    "billing_enabled": false,
    "quota_definition_guid": "78cfc7c3-25f8-415f-b1a5-54f540479c94",
    "status": "active",
    "quota_definition_url": "/v2/quota_definitions/78cfc7c3-25f8-415f-b1a5-54f540479c94",
    "spaces_url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062/spaces",
    "domains_url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062/domains",
    "private_domains_url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062/private_domains",
    "users_url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062/users",
    "managers_url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062/managers",
    "billing_managers_url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062/billing_managers",
    "auditors_url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062/auditors",
    "app_events_url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062/app_events",
    "space_quota_definitions_url": "/v2/organizations/77c93901-8769-4f17-b630-724948404062/space_quota_definitions"
  }
}