List all Space Quota Definitions
GET /v2/space_quota_definitions
Request
Route
GET /v2/space_quota_definitions
Parameters
Name |
Description |
Valid Values |
Example Values |
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/space_quota_definitions" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTUxIiwiZW1haWwiOiJlbWFpbC00OUBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDQ3MTE2ODMxfQ.DUq7x0RUI6FMuUU9fJy4PVwHz4jL9Mk7W7WKwsomzJA" \
-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": "5dc17363-0df0-491a-8c55-e0d3838b2468",
"url": "/v2/space_quota_definitions/5dc17363-0df0-491a-8c55-e0d3838b2468",
"created_at": "2015-11-03T00:53:51Z",
"updated_at": null
},
"entity": {
"name": "name-493",
"organization_guid": "7cf4ab27-4d83-428b-bf25-4dc0809dbf72",
"non_basic_services_allowed": true,
"total_services": 60,
"total_routes": 1000,
"memory_limit": 20480,
"instance_memory_limit": -1,
"app_instance_limit": -1,
"organization_url": "/v2/organizations/7cf4ab27-4d83-428b-bf25-4dc0809dbf72",
"spaces_url": "/v2/space_quota_definitions/5dc17363-0df0-491a-8c55-e0d3838b2468/spaces"
}
}
]
}
Headers