DELETE /v1/statistics/clear-cache
Clear statistics cache
Manually clears the statistics cache for the current company
Request
DELETE /v1/statistics/clear-cache
Parameters
[]
Response
{
"200": {
"description": "Cache cleared successfully",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"message": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"cleared_keys": {
"type": "number"
}
},
"required": [
"cleared_keys"
]
}
},
"required": [
"success",
"message",
"data"
]
}
}
}
}
}
View in Interactive API Reference