## List Peers `client.DNS.ZoneTransfers.Peers.List(ctx, query) (*SinglePage[Peer], error)` **get** `/accounts/{account_id}/secondary_dns/peers` List Peers. ### Parameters - `query ZoneTransferPeerListParams` - `AccountID param.Field[string]` ### Returns - `type Peer struct{…}` - `ID string` - `Name string` The name of the peer. - `IP string` IPv4/IPv6 address of primary or secondary nameserver, depending on what zone this peer is linked to. For primary zones this IP defines the IP of the secondary nameserver Cloudflare will NOTIFY upon zone changes. For secondary zones this IP defines the IP of the primary nameserver Cloudflare will send AXFR/IXFR requests to. - `IxfrEnable bool` Enable IXFR transfer protocol, default is AXFR. Only applicable to secondary zones. - `Port float64` DNS port of primary or secondary nameserver, depending on what zone this peer is linked to. - `TSIGID string` TSIG authentication will be used for zone transfer if configured. ### Example ```go package main import ( "context" "fmt" "github.com/cloudflare/cloudflare-go" "github.com/cloudflare/cloudflare-go/dns" "github.com/cloudflare/cloudflare-go/option" ) func main() { client := cloudflare.NewClient( option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"), ) page, err := client.DNS.ZoneTransfers.Peers.List(context.TODO(), dns.ZoneTransferPeerListParams{ AccountID: cloudflare.F("01a7362d577a6c3019a474fd6f485823"), }) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", page) } ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": [ { "id": "23ff594956f20c2a721606e94745a8aa", "name": "my-peer-1", "ip": "192.0.2.53", "ixfr_enable": false, "port": 53, "tsig_id": "69cd1e104af3e6ed3cb344f263fd0d5a" } ], "result_info": { "count": 1, "page": 1, "per_page": 20, "total_count": 2000, "total_pages": 100 } } ```