List all Space Quota Definitions for the Organization
GET /v2/organizations/:guid/space_quota_definitions
Request
Route
GET /v2/organizations/70e6f10b-d32a-48a0-8523-1668da744e21/space_quota_definitions
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
|
|
|
Headers
cURL
curl "https://api.[your-domain.com]/v2/organizations/70e6f10b-d32a-48a0-8523-1668da744e21/space_quota_definitions" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTgzIiwiZW1haWwiOiJlbWFpbC00N0Bzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDYxMzc0NjI0fQ.XZOj-9vMYaaF7gyYL3mIOSWbbYkoMWeai2QHloZCKgo" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"total_results": 1,
"total_pages": 1,
"prev_url": null,
"next_url": null,
"resources": [
{
"metadata": {
"guid": "c0608bc7-f037-41b4-8971-ea105f672998",
"url": "/v2/space_quota_definitions/c0608bc7-f037-41b4-8971-ea105f672998",
"created_at": "2016-04-16T01:23:44Z",
"updated_at": null
},
"entity": {
"name": "name-102",
"organization_guid": "70e6f10b-d32a-48a0-8523-1668da744e21",
"non_basic_services_allowed": true,
"total_services": 60,
"total_routes": 1000,
"memory_limit": 20480,
"instance_memory_limit": -1,
"app_instance_limit": -1,
"app_task_limit": 5,
"total_service_keys": 600,
"organization_url": "/v2/organizations/70e6f10b-d32a-48a0-8523-1668da744e21",
"spaces_url": "/v2/space_quota_definitions/c0608bc7-f037-41b4-8971-ea105f672998/spaces"
}
}
]
}
Headers