How to Purge Cache on RebelBoost
RebelBoost provides two methods for purging your site's cache: manually through the dashboard or programmatically via API.
Method 1: Manual Cache Purge via Dashboard
You can manage your cache directly from the RebelBoost dashboard under the Utilities sectionPurge All Cache
To clear the entire cache across your platform:
- Navigate to Cache Purge in the left sidebar
- Under "Purge All Cache", click the PURGE ALL CACHE button
- This will remove all cached pages and styles for your domain
Purge Cache for Specific URL
To clear the cache for a specific page:
- Navigate to Cache Purge in the left sidebar
- Under "Purge Cache for Specific URL", enter the path of the page you want to purge
- Note: The hostname is pre-filled and cannot be modified
- Example: novaescola.org.br/
- Click PURGE URL CACHE
Need access to the dashboard? See our guide on Getting Access to the RebelBoost Dashboard
Method 2: API-Based Cache Purge
For automated cache management or integration into your workflow, you can use the RebelBoost API.
Getting Your API Keys
API keys are available in the RebelBoost dashboard under API Key Management. You'll need these credentials to authenticate your API requests.
Available API Endpoints
DELETE /_rebelboost/extapi/v1/purge/all/
Purge all cache for a domain
Completely clears all cached pages and styles for the specified domain. Use this when you need to force a full refresh of all cached content across the entire site.
Request: No parameters required
Response: Returns "ok" on success (200), or error message on bad request (400)
DELETE /_rebelboost/extapi/v1/purge/page/
Purge page cache by path
Clears the cache for a specific page by providing its path. Use this when you need to refresh only a particular page without affecting other cached content.
Request Body:
{
"path": "/the/page/path"
}
Response: Returns "ok" on success (200)
For complete API documentation and interactive testing, visit: yourdomain.rebelboost.com/_rebelboost/swaggerui
Both methods provide efficient cache management to ensure your content updates are reflected immediately when needed.