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.eyJ1c2VyX2lkIjoidWFhLWlkLTE0NSIsImVtYWlsIjoiZW1haWwtMTAwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg4ODl9.ffI7LnjHhLWSlnG08nYmiBbY3m9Cysg_zb1z_eAxlyA" \
-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": "7ac08361-60cc-4742-8713-84a51b0683dd",
"url": "/v2/space_quota_definitions/7ac08361-60cc-4742-8713-84a51b0683dd",
"created_at": "2016-06-08T16:41:29Z",
"updated_at": "2016-06-08T16:41:26Z"
},
"entity": {
"name": "name-1483",
"organization_guid": "42a3ac8e-818b-499b-9756-a7b9f6a369f9",
"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,
"total_reserved_route_ports": -1,
"organization_url": "/v2/organizations/42a3ac8e-818b-499b-9756-a7b9f6a369f9",
"spaces_url": "/v2/space_quota_definitions/7ac08361-60cc-4742-8713-84a51b0683dd/spaces"
}
}
]
}
Headers