POST
/
v2
/
apps
/
{app_id}
/
network
/
purge_cache
Purge Cache
curl --request POST \
  --url https://api.squarecloud.app/v2/apps/{app_id}/network/purge_cache \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "paths": [
    {}
  ]
}'
{
    "status": "success"
}
Authorization
string
required
The API key for your account. You can find this in your account settings.
app_id
string
required
The ID of the application. You can find this in the URL of your application’s dashboard.
paths
array
required
The paths you want to purge the cache.

Response

status
string
Indicates whether the call was successful.. success if successful, error if not.
{
    "status": "success"
}