Skip to content
Start here

ACLs

List ACLs
client.dns.zoneTransfers.acls.list(ACLListParams { account_id } params, RequestOptionsoptions?): SinglePage<ACL { id, ip_range, name } >
GET/accounts/{account_id}/secondary_dns/acls
ACL Details
client.dns.zoneTransfers.acls.get(stringaclId, ACLGetParams { account_id } params, RequestOptionsoptions?): ACL { id, ip_range, name }
GET/accounts/{account_id}/secondary_dns/acls/{acl_id}
Create ACL
client.dns.zoneTransfers.acls.create(ACLCreateParams { account_id, ip_range, name } params, RequestOptionsoptions?): ACL { id, ip_range, name }
POST/accounts/{account_id}/secondary_dns/acls
Update ACL
client.dns.zoneTransfers.acls.update(stringaclId, ACLUpdateParams { account_id, ip_range, name } params, RequestOptionsoptions?): ACL { id, ip_range, name }
PUT/accounts/{account_id}/secondary_dns/acls/{acl_id}
Delete ACL
client.dns.zoneTransfers.acls.delete(stringaclId, ACLDeleteParams { account_id } params, RequestOptionsoptions?): ACLDeleteResponse { id }
DELETE/accounts/{account_id}/secondary_dns/acls/{acl_id}
ModelsExpand Collapse
ACL { id, ip_range, name }
id: string
ip_range: string

Allowed IPv4/IPv6 address range of primary or secondary nameservers. This will be applied for the entire account. The IP range is used to allow additional NOTIFY IPs for secondary zones and IPs Cloudflare allows AXFR/IXFR requests from for primary zones. CIDRs are limited to a maximum of /24 for IPv4 and /64 for IPv6 respectively.

name: string

The name of the acl.

ACLDeleteResponse { id }
id?: string