Home
Version 3
Domains (deprecated) API

Domains (deprecated) API

Create a Shared Domain (deprecated)

POST /v2/domains

Request

Route

POST /v2/domains

Body

Name Description Default Valid Values Example Values
guid The guid of the domain.
name The name of the domain.
  • example.com
  • foo.example.com
wildcard Allow routes with non-empty hosts
  • true
  • false
owning_organization_guid The organization that owns the domain. If not specified, the domain is shared.
{
  "name": "example.com",
  "wildcard": true
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwMyIsImVtYWlsIjoiZW1haWwtMjkzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mzk0MjYyMTZ9.ZOtaDpS29_wRTRTAZNwzL-fPrKu4yE2uHRvFRSn6Ebc
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/domains" -d '{
  "name": "example.com",
  "wildcard": true
}' -X POST \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwMyIsImVtYWlsIjoiZW1haWwtMjkzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mzk0MjYyMTZ9.ZOtaDpS29_wRTRTAZNwzL-fPrKu4yE2uHRvFRSn6Ebc" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Status

201 Created

Body

{
  "metadata": {
    "guid": "524789dd-e45d-4e6e-ba25-09b9668b955c",
    "url": "/v2/domains/524789dd-e45d-4e6e-ba25-09b9668b955c",
    "created_at": "2015-08-06T00:36:56Z",
    "updated_at": null
  },
  "entity": {
    "name": "example.com",
    "owning_organization_guid": null,
    "shared_organizations": [

    ]
  }
}

Headers

Content-Type: application/json;charset=utf-8
Location: /v2/domains/524789dd-e45d-4e6e-ba25-09b9668b955c
X-VCAP-Request-ID: a0a3d47b-73de-48c6-bb9b-c3779993f6fb
X-Cf-Warnings: Endpoint+deprecated
Content-Length: 324
X-Content-Type-Options: nosniff