List all Space Quota Definitions
GET /v2/space_quota_definitions
Fields
Name |
Description |
Default |
Valid Values |
Example Values |
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
|
|
|
Request
Headers
Route
GET /v2/space_quota_definitions
cURL
curl "https://api.[your-domain.com]/v2/space_quota_definitions" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIzNyIsImVtYWlsIjoiZW1haWwtMTc3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjQzMTAxMzR9.10qq-cWjE2AG96pIpCd8IWXAxGvv1kQeEZD6rnGNwyc" \
-H "Host: example.org" \
-H "Cookie: "
Response
Headers
Status
200 OK
Body
{
"total_results": 1,
"total_pages": 1,
"prev_url": null,
"next_url": null,
"resources": [
{
"metadata": {
"guid": "8428c166-2b9d-4e7c-bfb9-062fa8d232d2",
"url": "/v2/space_quota_definitions/8428c166-2b9d-4e7c-bfb9-062fa8d232d2",
"created_at": "2015-02-12T01:42:14Z",
"updated_at": null
},
"entity": {
"name": "name-1490",
"organization_guid": "dd4705a3-22d1-4495-a7f9-8043bdcb30f1",
"non_basic_services_allowed": true,
"total_services": 60,
"total_routes": 1000,
"memory_limit": 20480,
"instance_memory_limit": -1,
"organization_url": "/v2/organizations/dd4705a3-22d1-4495-a7f9-8043bdcb30f1",
"spaces_url": "/v2/space_quota_definitions/8428c166-2b9d-4e7c-bfb9-062fa8d232d2/spaces"
}
}
]
}