POST
/
dns
/
v2
/
analyze
/
{name}
/
delegation-status
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
response = client.dns.zones.check_delegation_status(
    "name",
)
print(response.authoritative_name_servers)
{
  "authoritative_name_servers": [
    {
      "ipv4Addresses": [
        "<string>"
      ],
      "ipv6Addresses": [
        "<string>"
      ],
      "name": "<string>"
    }
  ],
  "gcore_authorized_count": 123,
  "is_whitelabel_delegation": true,
  "non_gcore_authorized_count": 123,
  "zone_exists": true
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

name
string
required

zone name

Response

200
application/json

DelegationStatusResponse

The response is of type object.