Skip to main content
POST
/
cache
/
del
Delete User Cache Entry
curl --request POST \
  --url https://api.veryfront.com/cache/del \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "key": "<string>"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Body

application/json
key
string
required

User-scoped cache key to delete.

Required string length: 1 - 512
Pattern: ^[a-zA-Z0-9_:.\-/]+$

Response

User-scoped cache value deleted successfully.

success
boolean
required