22 lines
616 B
Bash
22 lines
616 B
Bash
#!/bin/bash
|
|
|
|
TOKEN=""
|
|
ZONE_ID=
|
|
|
|
# EMAIL=me@gmail.com
|
|
# KEY=11111111111111111111111111
|
|
# Replace with
|
|
# -H "X-Auth-Email: ${EMAIL}" \
|
|
# -H "X-Auth-Key: ${KEY}" \
|
|
# for old API keys
|
|
|
|
|
|
curl -s -X GET https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records?per_page=500 \
|
|
-H "Authorization: Bearer ${TOKEN}" \
|
|
-H "Content-Type: application/json" | jq .result[].id | tr -d '"' | (
|
|
while read id; do
|
|
curl -s -X DELETE https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records/${id} \
|
|
-H "Authorization: Bearer ${TOKEN}" \
|
|
-H "Content-Type: application/json"
|
|
done
|
|
)
|