Environment Variable Groups API

Updating the contents of the staging environment variable group

PUT /v2/config/environment_variable_groups/staging

Updates the set of environment variables which will be made available during staging

Request

Route

PUT /v2/config/environment_variable_groups/staging
{
  "abc": 123,
  "do-re-me": "far-so-la-tee"
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQyMSIsImVtYWlsIjoiZW1haWwtMjgzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg5MDJ9.myT76kAXPFK0u29Sgl0ues4Sgot8hqO0QAudjBP8u2Q
Host: example.org
Content-Type: application/json
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/config/environment_variable_groups/staging" -d '{
  "abc": 123,
  "do-re-me": "far-so-la-tee"
}' -X PUT \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQyMSIsImVtYWlsIjoiZW1haWwtMjgzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg5MDJ9.myT76kAXPFK0u29Sgl0ues4Sgot8hqO0QAudjBP8u2Q" \
	-H "Host: example.org" \
	-H "Content-Type: application/json" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "abc": 123,
  "do-re-me": "far-so-la-tee"
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 12c19ddc-aebe-47f5-afea-69afeccd83e4
Content-Length: 47
X-Content-Type-Options: nosniff