List all Space Quota Definitions for the Organization
GET /v2/organizations/:guid/space_quota_definitions
Request
Route
GET /v2/organizations/c93f3a41-3e01-43de-82ec-02ffd260d439/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
|
|
|
Body
Name |
Description |
Default |
Valid Values |
Example Values |
Headers
cURL
curl "https://api.[your-domain.com]/v2/organizations/c93f3a41-3e01-43de-82ec-02ffd260d439/space_quota_definitions" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQyIiwiZW1haWwiOiJlbWFpbC0zOEBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDI3NDgwODQyfQ.0JHl11vJ6UX1EkGswxoOAqlu9XvA1v_teRti0Zd9z40" \
-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": "f7ba00de-c55e-4c36-8e40-a84275046afd",
"url": "/v2/space_quota_definitions/f7ba00de-c55e-4c36-8e40-a84275046afd",
"created_at": "2015-03-20T18:27:22Z",
"updated_at": null
},
"entity": {
"name": "name-158",
"organization_guid": "c93f3a41-3e01-43de-82ec-02ffd260d439",
"non_basic_services_allowed": true,
"total_services": 60,
"total_routes": 1000,
"memory_limit": 20480,
"instance_memory_limit": -1,
"organization_url": "/v2/organizations/c93f3a41-3e01-43de-82ec-02ffd260d439",
"spaces_url": "/v2/space_quota_definitions/f7ba00de-c55e-4c36-8e40-a84275046afd/spaces"
}
}
]
}
Headers