Getting Started
- What is Flextype?
- Requirements
- Installation
- Configuration
- Folder Structure
- API Reference
- Code of Conduct
- Getting Help
- License
Core Concepts
Console
Rest API
The Flextype Cache API is organized around Representational State Transfer (REST) with the various helper endpoints to deliver data to apps, websites and others.
Endpoints
Method | Endpoint | Route name | Description |
---|---|---|---|
POST | /api/v1/cache/clear | cache.clear | Clear cache |
POST /api/v1/cache/clear
Request
POST /api/v1/cache/clear?token=YOUR_CACHE_TOKEN&access_token=YOUR_CACHE_TOKEN
Body
Name | Description | |
---|---|---|
token | REQUIRED | Valid Cache token. |
access_token | REQUIRED | Valid Access token. |
Result
Empty body.
Examples
Clear cache.
Request
GET /api/v1/cache/clear?token=efe1e36e4d60fcd547e22eb9f795dff9&access_token=efe1e36e4d60fcd547e22eb9f795dff9
Response
200 OK
{
}