We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e253a3e commit 1d8168cCopy full SHA for 1d8168c
dns.go
@@ -69,8 +69,8 @@ func (api *API) CreateDNSRecord(zoneID string, rr DNSRecord) (*DNSRecordResponse
69
func (api *API) DNSRecords(zoneID string, rr DNSRecord) ([]DNSRecord, error) {
70
// Construct a query string
71
v := url.Values{}
72
- // Request as many records as possible per page - API max is 50
73
- v.Set("per_page", "50")
+ // Request as many records as possible per page - API max is 100
+ v.Set("per_page", "100")
74
if rr.Name != "" {
75
v.Set("name", rr.Name)
76
}
0 commit comments