DELETE /_system/cache_management/delete_key/{type}
Delete a specific cache, increment, or document key (requires manage_cache_delete permission)
    Delete a specific cache, increment, or document key (requires manage_cache_delete permission)
  
  
  
  | Key | Type | Example | |
|---|---|---|---|
| :type required | string | 
    
       "example-type" 
     | 
    
| Key | Type | Example | |
|---|---|---|---|
| authorization required | string | 
    
       "Bearer your-jwt-token" 
     | 
    
| Key | Type | Example | Description | 
|---|---|---|---|
| key required | string | 
    
       "example-string" 
     | 
    
       Key name to delete (no wildcards allowed) 
     | 
  
| store_name optional | string | 
    
       "example-string" 
     | 
    
       Storage name (required for document type) 
     | 
  
| guid optional | string | 
    
       "example-string" 
     | 
    
       Document GUID (required for document type) 
     | 
  
{
  "deleted": true,
  "key": "example-string",
  "type": "example-string"
}
  {
  "success": false,
  "error": "HTTP_401",
  "message": "Error response"
}
  | Error Code | Description | 
|---|---|
| HTTP_400 | Invalid request | 
| HTTP_401 | HTTP 401 error | 
| HTTP_404 | Key not found | 
| permission | description | 
|---|---|
BearerAuth | 
            JWT access token obtained from login endpoint required | 
Back to Cache Management Return to the Cache Management category to view other endpoints All API Categories Browse all available API categories