On this page
article
Changing a Core's Domain
How to change the domain assigned to a Core after provisioning.
When a Core is provisioned, it is assigned a domain based on the subdomain you specified in core-create and one of the three domains attached to your account — for example, mycore.yourdomain.com.
If you need to change the domain assigned to a Core after provisioning, you can do so using the Provisioner API.
Before You Begin
Glue records for the new domain must be configured correctly before running this command. The domain change will not work if DNS is not set up in advance.
Changing the Domain
curl -k -X POST https://178.156.242.210:4445/core-changedomain \
-H "Content-Type: application/json" \
-d '{
"account_id": "your-account-id",
"ip": "<ip address of the Core>",
"domain": "<new domain>",
"organization": "<organization name>"
}'
| Field | Required | Description |
|---|---|---|
account_id | Yes | Your Federated Enterprise account ID. |
ip | Yes | The IP address of the Core you are updating. |
domain | Yes | The new domain to assign to this Core. Glue records must already be configured. |
organization | Yes | Your company name. This is used to identify the organization this Core belongs to. |
A successful request returns an empty JSON object ({}).