Home
Version 3
Organizations API

Organizations API

List all Space Quota Definitions for the Organization

GET /v2/organizations/:guid/space_quota_definitions

Fields

Name Description Default Valid Values Example Values

Parameters

Name Description Valid Values Example Values
guid The guid of the Organization
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.eyJ1c2VyX2lkIjoidWFhLWlkLTEyMiIsImVtYWlsIjoiZW1haWwtMTAyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTc0NjIzNTh9.IvMnyFi62nNUcO4rYrdeM8E9_xNQVcjEJj-3cEjCEi0
Host: example.org
Cookie: 

Route

GET /v2/organizations/a20a02b1-cd4d-4869-b5a1-c618dd0b8add/space_quota_definitions

cURL

curl "https://api.[your-domain.com]/v2/organizations/a20a02b1-cd4d-4869-b5a1-c618dd0b8add/space_quota_definitions" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEyMiIsImVtYWlsIjoiZW1haWwtMTAyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTc0NjIzNTh9.IvMnyFi62nNUcO4rYrdeM8E9_xNQVcjEJj-3cEjCEi0" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: d84e1ba2-e633-4033-a948-8cd7d6089db5
Content-Length: 841
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "f6793496-c2d0-4316-8303-7dd2ab0bb489",
        "url": "/v2/space_quota_definitions/f6793496-c2d0-4316-8303-7dd2ab0bb489",
        "created_at": "2014-11-24T19:32:38+00:00",
        "updated_at": null
      },
      "entity": {
        "name": "name-524",
        "organization_guid": "a20a02b1-cd4d-4869-b5a1-c618dd0b8add",
        "non_basic_services_allowed": true,
        "total_services": 60,
        "total_routes": 1000,
        "memory_limit": 20480,
        "instance_memory_limit": -1,
        "organization_url": "/v2/organizations/a20a02b1-cd4d-4869-b5a1-c618dd0b8add",
        "spaces_url": "/v2/space_quota_definitions/f6793496-c2d0-4316-8303-7dd2ab0bb489/spaces"
      }
    }
  ]
}