Create a Domain owned by the given Organization (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
|
|
|
|
owning_organization_guid
|
The organization that owns the domain. If not specified, the domain is shared.
|
|
|
|
{
"name": "exmaple.com",
"wildcard": true,
"owning_organization_guid": "c1c18e88-eee2-42e2-a125-0764cabdd662"
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/domains" -d '{
"name": "exmaple.com",
"wildcard": true,
"owning_organization_guid": "c1c18e88-eee2-42e2-a125-0764cabdd662"
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQzNiIsImVtYWlsIjoiZW1haWwtMzA0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTg4NTU2OTB9.qxfuDHzNgHxCdMBOTDBWN0TCgsz5FFVFE9NiKViycH0" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "bb8ed5e9-8c53-47f4-bedc-593b1efd5e66",
"url": "/v2/domains/bb8ed5e9-8c53-47f4-bedc-593b1efd5e66",
"created_at": "2016-03-17T21:41:30Z",
"updated_at": null
},
"entity": {
"name": "exmaple.com",
"owning_organization_guid": "c1c18e88-eee2-42e2-a125-0764cabdd662",
"shared_organizations": [
],
"owning_organization_url": "/v2/organizations/c1c18e88-eee2-42e2-a125-0764cabdd662",
"spaces_url": "/v2/domains/bb8ed5e9-8c53-47f4-bedc-593b1efd5e66/spaces"
}
}
Headers