Cloud DNS API, REST: DnsZone.ListRecordSets
Retrieves the list of record sets in the specified folder.
HTTP request
GET https://dns.api.yandexcloud.kz/dns/v1/zones/{dnsZoneId}:listRecordSets
Path parameters
|
Field |
Description |
|
dnsZoneId |
string Required field. ID of the DNS zone to list record sets in. To get a DNS zone ID, make a DnsZoneService.List request. |
Query parameters
|
Field |
Description |
|
pageSize |
string (int64) The maximum number of results per page to return. If the number of available |
|
pageToken |
string Page token. To get the next page of results, set |
|
filter |
string A filter expression that filters record sets listed in the response. The expression consists of one or more conditions united by Each condition has the form
Examples of a filter: |
Response
HTTP Code: 200 - OK
{
"recordSets": [
{
"name": "string",
"type": "string",
"ttl": "string",
"data": [
"string"
]
}
],
"nextPageToken": "string"
}
|
Field |
Description |
|
recordSets[] |
List of record sets in the specified DNS zone. |
|
nextPageToken |
string Token for getting the next page of the list. If the number of results is greater than Each subsequent page will have its own |
RecordSet
A record set. For details about the concept, see Resource record.
|
Field |
Description |
|
name |
string Domain name. |
|
type |
string Record type. |
|
ttl |
string (int64) Time to live in seconds. |
|
data[] |
string Data of the record set. |