Create a Shared Domain
POST /v2/shared_domains
Request
Route
POST /v2/shared_domains
Body
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the domain.
|
|
|
|
router_group_guid
|
The guid of the router group.
|
|
|
|
name
|
The name of the domain.
|
|
|
- example.com
- foo.example.com
|
{
"name": "example.com",
"router_group_guid": "my-random-guid"
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/shared_domains" -d '{
"name": "example.com",
"router_group_guid": "my-random-guid"
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM5MSIsImVtYWlsIjoiZW1haWwtMjkzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzB9.8uigwgcSBPNErJV7lwo17nkEILkXSiwN_hk_R2DNDBo" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "e8b1d652-fac2-4751-9e93-cad1bcddebf5",
"url": "/v2/shared_domains/e8b1d652-fac2-4751-9e93-cad1bcddebf5",
"created_at": "2015-10-15T23:52:50Z",
"updated_at": null
},
"entity": {
"name": "example.com",
"router_group_guid": "my-random-guid"
}
}
Headers