Home
Version 3
Organization Quota Definitions API

Organization Quota Definitions API

Updating a Organization Quota Definition

PUT /v2/quota_definitions/:guid

Fields

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
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.

Parameters

Name Description Valid Values Example Values
guid The guid of the Organization Quota Definition

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM0NiIsImVtYWlsIjoiZW1haWwtMjY3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjQzMTAxNDJ9.CcV4U42Z1QbsaiYYy-HU1mfCrnQn7s81rQhoUC3kW2g
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

Route

PUT /v2/quota_definitions/43c6804b-c6c6-4cb1-9604-b93c71bdb9ad

Body

{

}

cURL

curl "https://api.[your-domain.com]/v2/quota_definitions/43c6804b-c6c6-4cb1-9604-b93c71bdb9ad" -d '{

}' -X PUT \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM0NiIsImVtYWlsIjoiZW1haWwtMjY3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjQzMTAxNDJ9.CcV4U42Z1QbsaiYYy-HU1mfCrnQn7s81rQhoUC3kW2g" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 934a5bf3-19b5-4a64-9023-336cdd167bca
Content-Length: 457
X-Content-Type-Options: nosniff

Status

201 Created

Body

{
  "metadata": {
    "guid": "43c6804b-c6c6-4cb1-9604-b93c71bdb9ad",
    "url": "/v2/quota_definitions/43c6804b-c6c6-4cb1-9604-b93c71bdb9ad",
    "created_at": "2015-02-12T01:42:22Z",
    "updated_at": "2015-02-12T01:42:22Z"
  },
  "entity": {
    "name": "name-1980",
    "non_basic_services_allowed": true,
    "total_services": 60,
    "total_routes": 1000,
    "memory_limit": 20480,
    "trial_db_allowed": false,
    "instance_memory_limit": -1
  }
}