Delete cached responses using exactly one selector: `cache_keys`, `ids`, or `all: true`. Up to 1,000 keys or IDs can be deleted per request. `ids` uses internal integer IDs and is JWT-only; API-key clients should use `cache_keys` or `all`. Rate limit: 60 requests per minute per organization for API-key calls (shared across API keys) and per user for JWT calls.
Request
Exactly one deletion mode is required.
cache_keyslist of stringsOptional
Cache keys to delete. Supported for API key and JWT authentication.
idslist of integersOptional
Internal numeric cache entry IDs to delete. JWT only.
allbooleanOptional
Set to true to delete all cached responses for the current organization. The server rejects false.
Response
Cached responses were deleted synchronously.
success_countinteger>=0
Number of items successfully processed.
error_countinteger>=0
Number of items that failed.
errorslist of objects
Item-level failures, keyed by zero-based input index.
deleted_countinteger>=0
Number of resources matched and processed for deletion.
messagestring
Human-readable deletion result.