I am using API v2 to retrieve all RR in a zone.
I use the call “/api/v2/zones/<id>/resourceRecords”
In parsing the output, in the case of TXT, SRV, Generic Records I get directly the rdata in the json() .
But in case of a HostRecord I need to use the json()[‘data’]['_links']['addresses']['href'] to make an additional API call to get the actual IPv4 addresses of the RR.
Problem: I am dealing with a huge zone ( > 300’000 entries), and this takes a long time…..
Is there a way to retrieve directly with a single API call the RR of a zone with all the data, kind of a dump of a zone?