Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X DELETE https://kliio.app/api/v1/quotes/quo-uuid-... \ -H "Authorization: Bearer YOUR_API_KEY"
const res = await fetch('https://kliio.app/api/v1/quotes/quo-uuid-...', { method: 'DELETE', headers: { Authorization: 'Bearer YOUR_API_KEY' } }) const result = await res.json()
{ "success": true, "message": "Quote deleted" }
{ "error": "Can only delete quotes with Draft status" }
{ "error": "Quote not found or access denied" }
Permanently deletes a quote. Only quotes with Draft status can be deleted.
Draft
Bearer YOUR_API_KEY
Declined
true
"Quote deleted"