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>"
}'
  
FieldRequiredDescription
account_idYesYour Federated Enterprise account ID.
ipYesThe IP address of the Core you are updating.
domainYesThe new domain to assign to this Core. Glue records must already be configured.
organizationYesYour company name. This is used to identify the organization this Core belongs to.

A successful request returns an empty JSON object ({}).