Creating a Organization Quota Definition
POST /v2/quota_definitions
Request
Route
POST /v2/quota_definitions
Body
Name |
Description |
Default |
Valid Values |
Example Values |
name
|
The name for the Organization Quota Definition.
|
|
|
|
non_basic_services_allowed
|
If an organization can have non basic services
|
|
|
|
total_services
|
How many services an organization can have.
|
|
|
|
total_routes
|
How many routes an organization can have.
|
|
|
|
total_private_domains
|
How many private domains an organization can have. (-1 represents an unlimited amount)
|
-1
|
|
|
memory_limit
|
How much memory in megabyte an organization can have.
|
|
|
|
instance_memory_limit
|
The maximum amount of memory in megabyte an application instance can have. (-1 represents an unlimited amount)
|
-1
|
|
|
trial_db_allowed
|
If an organization can have a trial db.
|
|
|
|
{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"instance_memory_limit": 10240
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/quota_definitions" -d '{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"instance_memory_limit": 10240
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM4NyIsImVtYWlsIjoiZW1haWwtMjc5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzY4Mjk4MDB9.SlmsVgmxuklRqFb0KS49956VDCuGS5wY6QEbqsBexN4" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "21801762-7af9-40a5-9aa3-e6e779114196",
"url": "/v2/quota_definitions/21801762-7af9-40a5-9aa3-e6e779114196",
"created_at": "2015-07-06T23:23:19Z",
"updated_at": null
},
"entity": {
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"total_private_domains": -1,
"memory_limit": 5120,
"trial_db_allowed": false,
"instance_memory_limit": 10240
}
}
Headers