Skip to content

Instantly share code, notes, and snippets.

@kyouheicf
Last active July 13, 2023 17:02
Show Gist options
  • Select an option

  • Save kyouheicf/2d962c77869a12d413edb2f298fd20ff to your computer and use it in GitHub Desktop.

Select an option

Save kyouheicf/2d962c77869a12d413edb2f298fd20ff to your computer and use it in GitHub Desktop.
export EMAIL='YOUR_EMAIL'
export APIKEY='YOUR_APIKEY'
export ZONE_ID='YOUR_ZONE_ID'
# Single File Purge
curl --request POST \
--url https://api.cloudflare.com/client/v4/zones/$ZONE_ID/purge_cache \
--header 'Content-Type: application/json' \
--header "X-Auth-Email: $EMAIL" \
--header "X-Auth-Key: $APIKEY" \
--data '{
"files": [
"https://example.com/png/image.png"
]
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment