GET

Get Connected Domain Setup Info


Retrieves information for the initial setup of a connected domain.

You must pass the relevant Wix account ID in the header of the call.

Important: This call requires an account level API key and cannot be authenticated with the standard authorization header.

Endpoint
GET
https://www.wixapis.com/domains/v1/connected-domain-setup-info/{connectedDomainId}

Path Params
connectedDomainIdstringRequired

ID of the connected domain to retrieve setup information for. Identical to the domain name including TLD.

Response Object
connectedDomainSetupInfoConnectedDomainSetupInfo

Retrieved setup information.

Retrieve a connected domain setup information.
Request
cURL
curl -X GET 'https://www.wixapis.com/domains/v1/connected-domain-setup-info/mysite.com' \ -H 'wix-account-id: <ACCOUNT_ID>' \ -H 'Authorization: <AUTH>' \
Response
JSON
{ "connectedDomainSetupInfo": { "connectedDomainId": "mysite.com", "registrarName": "GO_DADDY", "nameserverRecord": { "nsRecord": { "hostName": "mysite.com", "ttl": 86400, "values": ["ns13.wixdns.net", "ns12.wixdns.net"] } } } }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?