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.eyJ1c2VyX2lkIjoidWFhLWlkLTExNyIsImVtYWlsIjoiZW1haWwtODRAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ1MzMxMDk3NX0.w8W5ia51V3etf8VHUiNy2IkKMGoDfTloK_FksX-A-z4" \
-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": "45098a4e-8a5b-4727-8cb9-3a78eeebebfa",
"url": "/v2/space_quota_definitions/45098a4e-8a5b-4727-8cb9-3a78eeebebfa",
"created_at": "2016-01-13T17:29:35Z",
"updated_at": null
},
"entity": {
"name": "name-382",
"organization_guid": "2405ba77-7814-4d2a-881c-97e9c1332793",
"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/2405ba77-7814-4d2a-881c-97e9c1332793",
"spaces_url": "/v2/space_quota_definitions/45098a4e-8a5b-4727-8cb9-3a78eeebebfa/spaces"
}
}
]
}
Headers