I have read the documentation about cache API in APIGEE.
But I have a requirement to implement an API that invalidates cache entries in Apigee. Specifically, whenever important data is updated, I want to invoke this cache invalidation API. The input to the function should be the Apigee endpoint URL, and the API should delete all cache entries related to that endpoint, without needing to specify the cache name or cache key. However, I haven't found any documentation that outlines how to achieve this.
Could anyone please assist me with the correct approach or documentation for this scenario?
Solved! Go to Solution.
Hi, thanks for reaching out @Princy
For this, you could use the POST/entries to clear the entire cache.
Or POST /entries/{entry} for a specific entry you know.
You can find more details and guide here: https://apidocs.apigee.com/docs/caches/1/routes/organizations/%7Borg_name%7D/environments/%7Benv_nam...