Install
openclaw skills install delete-fileDelete a file from cloud storage by URL. Only the API key that uploaded the file can delete it.
openclaw skills install delete-fileDeletes a file from cloud storage by its URL. Verifies ownership — only the API key that uploaded the file can delete it.
url — the file URL returned by the upload endpointSend your API key in the CLIENT-API-KEY header.
Get your free API key at https://pdfapihub.com. Full API documentation is available at https://pdfapihub.com/docs.
curl -X POST https://pdfapihub.com/api/v1/file/delete \
-H "CLIENT-API-KEY: your_api_key" \
-H "Content-Type: application/json" \
-d '{ "url": "https://bucket.s3.amazonaws.com/pdf/abc123_my_report.pdf" }'