Skip to main content
POST
/
funnels
/
funnel
/
cache
/
clear
cURL
curl --request POST \
  --url https://services.leadconnectorhq.com/funnels/funnel/cache/clear \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domains": [
    "example.com",
    "test.com"
  ],
  "paths": [
    "/path1",
    "/path2"
  ]
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
domains
string[]
required

Array of domains to clear cache for

Example:
["example.com", "test.com"]
paths
string[]
required

Array of paths to clear cache for

Example:
["/path1", "/path2"]

Response

201 - undefined
Last modified on March 4, 2026