Issue with purge cache by URL API

having the following issue, we have an API that has cache activated, this works normally, i can see correct headers returned, MISS, HIT, EXPIRED values, the problem is that i'm not able to purge the cache via API or UI, this is important for us once the content is changed we need to inmediate purge. - browser cache is disabled in cloudflare as need to purge via API, as it can be seen in the no-store added by cloudflare attached the request of request we also tried adding the accept encoding, as cloudflare ads that Vary to the response
{
"files": [
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart"
},
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart",
"headers": {
"Accept-Encoding": "br"
}
},
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart",
"headers": {
"Accept-Encoding": "gzip"
}
},
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart",
"headers": {
"Accept-Encoding": "deflate"
}
},
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart",
"headers": {
"Accept-Encoding": "*"
}
}
]
}
{
"files": [
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart"
},
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart",
"headers": {
"Accept-Encoding": "br"
}
},
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart",
"headers": {
"Accept-Encoding": "gzip"
}
},
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart",
"headers": {
"Accept-Encoding": "deflate"
}
},
{
"url": "https://discover.gopersonal.ai/public/cached-content/6750d074dd9de458a1abb6ea/update-cart",
"headers": {
"Accept-Encoding": "*"
}
}
]
}
also not working after hitting the purge request, content is still returned as MISS
3 Replies
scotto
scottoOP2mo ago
it seems cloudflare cache by origin header, but this is not document anywhere, or i miss something? also not possible to simply remove for any origin with * as this is an API, there is no option to purge to all origins at once?
Erisa
Erisa2mo ago
Cloudflare Docs
Cache Keys · Cloudflare Cache (CDN) docs
A Cache Key is an identifier that Cloudflare uses for a file in our cache, and the Cache Key Template defines the identifier for a given HTTP request.
scotto
scottoOP2mo ago
Noted

Did you find this page helpful?