GET
/
dns
/
v2
/
zones
/
{zoneName}
/
{rrsetName}
/
{rrsetType}
/
failover
/
log
curl --request GET \
  --url https://api.gcore.com/dns/v2/zones/{zoneName}/{rrsetName}/{rrsetType}/failover/log \
  --header 'Authorization: <api-key>'
{
  "log": [
    {
      "action": "<string>",
      "address": "<string>",
      "time": 123
    }
  ],
  "total_amount": 123
}

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

zoneName
string
required
rrsetName
string
required
rrsetType
string
required

Query Parameters

offset
integer

Amount of records to skip before beginning to write in response.

limit
integer

Max number of records in response

Response

200
application/json

FailoverLogResponse

The response is of type object.