Home
Version 3
Organization Quota Definitions API

Organization Quota Definitions API

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.
  • gold_quota
non_basic_services_allowed If an organization can have non basic services
  • true
  • false
total_services How many services an organization can have.
  • 5
  • 201
total_routes How many routes an organization can have.
  • 10
  • 23
total_private_domains How many private domains an organization can have. (-1 represents an unlimited amount) -1
  • -1
  • 10
  • 23
memory_limit How much memory in megabyte an organization can have.
  • 5120
  • 9999
instance_memory_limit The maximum amount of memory in megabyte an application instance can have. (-1 represents an unlimited amount) -1
  • -1
  • 10240
  • 9999
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

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM4NyIsImVtYWlsIjoiZW1haWwtMjc5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzY4Mjk4MDB9.SlmsVgmxuklRqFb0KS49956VDCuGS5wY6QEbqsBexN4
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

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

Content-Type: application/json;charset=utf-8
Location: /v2/quota_definitions/21801762-7af9-40a5-9aa3-e6e779114196
X-VCAP-Request-ID: 701b3c92-df70-48f5-8751-dc0897a83348
Content-Length: 472
X-Content-Type-Options: nosniff