Home
Version 3
Organizations API

Organizations API

List all Organizations

GET /v2/organizations

Fields

Name Description Default Valid Values Example Values

Parameters

Name Description Valid Values Example Values
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: name, space_guid, user_guid, manager_guid, billing_manager_guid, auditor_guid, status
  • q=filter:value
  • q=filter>value
  • q=filter IN a,b,c
page Page of results to fetch
results-per-page Number of results per page
order-direction Order of the results: asc (default) or desc
inline-relations-depth 0 - don't inline any relations and return URLs. Otherwise, inline to depth N.
orphan-relations 0 - de-duplicate object entries in response
exclude-relations comma-delimited list of relations to drop from response
include-relations comma-delimited list of the only relations to include in response

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE2NiIsImVtYWlsIjoiZW1haWwtMTI5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MDR9.rcAJMKlaN1yRpjGxc_LD_9V9Cv_a3QGzoeHV85JRzfE
Host: example.org
Cookie: 

Route

GET /v2/organizations

cURL

curl "https://api.[your-domain.com]/v2/organizations" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE2NiIsImVtYWlsIjoiZW1haWwtMTI5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MDR9.rcAJMKlaN1yRpjGxc_LD_9V9Cv_a3QGzoeHV85JRzfE" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 2400f5f8-d97d-426c-a5f2-31306e64ad7a
Content-Length: 1525
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "6d4c7afc-2348-4519-9ca2-73ab8053cdbe",
        "url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe",
        "created_at": "2014-11-13T23:38:21+00:00",
        "updated_at": null
      },
      "entity": {
        "name": "the-system_domain-org-name",
        "billing_enabled": false,
        "quota_definition_guid": "534a765b-1e44-42e9-bb7a-78c61fb6620a",
        "status": "active",
        "quota_definition_url": "/v2/quota_definitions/534a765b-1e44-42e9-bb7a-78c61fb6620a",
        "spaces_url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe/spaces",
        "domains_url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe/domains",
        "private_domains_url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe/private_domains",
        "users_url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe/users",
        "managers_url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe/managers",
        "billing_managers_url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe/billing_managers",
        "auditors_url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe/auditors",
        "app_events_url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe/app_events",
        "space_quota_definitions_url": "/v2/organizations/6d4c7afc-2348-4519-9ca2-73ab8053cdbe/space_quota_definitions"
      }
    }
  ]
}