Last active
July 13, 2023 17:02
-
-
Save kyouheicf/2d962c77869a12d413edb2f298fd20ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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