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
|
|
|
Body
Name |
Description |
Default |
Valid Values |
Example Values |
Headers
cURL
curl "https://api.[your-domain.com]/v2/space_quota_definitions" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTg0IiwiZW1haWwiOiJlbWFpbC04M0Bzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDMyMzEzNjA5fQ.Fl0ko32odt9LnuH4cE4VkDywEIKGfEKCMTkFFbSUrwA" \
-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": "bf4654cd-1c88-4ef1-b6a9-3f4f0f8dc79f",
"url": "/v2/space_quota_definitions/bf4654cd-1c88-4ef1-b6a9-3f4f0f8dc79f",
"created_at": "2015-05-15T16:53:29Z",
"updated_at": null
},
"entity": {
"name": "name-381",
"organization_guid": "6eb84d70-8e2c-49de-95b1-74e2e0eb362b",
"non_basic_services_allowed": true,
"total_services": 60,
"total_routes": 1000,
"memory_limit": 20480,
"instance_memory_limit": -1,
"organization_url": "/v2/organizations/6eb84d70-8e2c-49de-95b1-74e2e0eb362b",
"spaces_url": "/v2/space_quota_definitions/bf4654cd-1c88-4ef1-b6a9-3f4f0f8dc79f/spaces"
}
}
]
}
Headers