Home
Version 3
Organization Quota Definitions API

Organization Quota Definitions API

Updating a Organization Quota Definition

PUT /v2/quota_definitions/:guid

Request

Route

PUT /v2/quota_definitions/db597fce-23ba-440c-a41c-cbef0bb00dd6

Parameters

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

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

}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQ5IiwiZW1haWwiOiJlbWFpbC00OEBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDI1OTQ4NjU5fQ.2FnGtNWsbrfnsOiXXGOEUtCw01aKhnxFcYJ5_cfATLA
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/quota_definitions/db597fce-23ba-440c-a41c-cbef0bb00dd6" -d '{

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

Response

Status

201 Created

Body

{
  "metadata": {
    "guid": "db597fce-23ba-440c-a41c-cbef0bb00dd6",
    "url": "/v2/quota_definitions/db597fce-23ba-440c-a41c-cbef0bb00dd6",
    "created_at": "2015-03-03T00:50:59Z",
    "updated_at": "2015-03-03T00:50:59Z"
  },
  "entity": {
    "name": "name-113",
    "non_basic_services_allowed": true,
    "total_services": 60,
    "total_routes": 1000,
    "memory_limit": 20480,
    "trial_db_allowed": false,
    "instance_memory_limit": -1
  }
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 9d050449-b3d2-4bfc-847f-73953d082a10
Content-Length: 456
X-Content-Type-Options: nosniff