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}
Get ACL.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
ACL Details
import Cloudflare from 'cloudflare';
const client = new Cloudflare({
apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted
});
const acl = await client.dns.zoneTransfers.acls.get('23ff594956f20c2a721606e94745a8aa', {
account_id: '01a7362d577a6c3019a474fd6f485823',
});
console.log(acl.id);{
"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",
"ip_range": "192.0.2.53/28",
"name": "my-acl-1"
}
}Returns Examples
{
"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",
"ip_range": "192.0.2.53/28",
"name": "my-acl-1"
}
}