GET
/
v2
/
zones
/
{zoneName}
/
rrsets
List of RRset
curl --request GET \
  --url https://api.___serverhost___/dns/v2/zones/{zoneName}/rrsets
{
  "rrsets": [
    {
      "filter_set_id": 123,
      "meta": {},
      "name": "sub.example.com",
      "pickers": [
        {
          "limit": 123,
          "strict": true,
          "type": "geodns"
        }
      ],
      "resource_records": [
        {
          "content": [
            "1.1.1.1"
          ],
          "enabled": true,
          "id": 42,
          "meta": {
            "continents": [
              "europe",
              "asia"
            ],
            "countries": [
              "us",
              "gb",
              "lu"
            ],
            "ip": [
              "192.168.15.150/25",
              "2003:de:2016::/48"
            ]
          }
        }
      ],
      "ttl": 123,
      "type": "A",
      "updated_at": "2023-11-07T05:31:56Z",
      "warning": "<string>",
      "warnings": [
        {
          "key": "<string>",
          "message": "<string>"
        }
      ]
    }
  ],
  "total_amount": 123
}

Path Parameters

zoneName
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

order_by
string

Field name to sort by

order_direction
enum<string>

Ascending or descending order

Available options:
asc,
desc

Response

ListRRSetResponse

The response is of type object.