Skip to main content
DELETE
Blob Delete Objects
string
required
The API key for your account. You can find this in your account settings.
Delete removes a single stored object by its full key, including the owning account’s ID prefix. There’s no bulk delete: the endpoint only ever acts on one name, taken from the object field or the first entry of an objects array (kept for backward compatibility), so removing many files means one request per object. The rate limit of 10 requests per 10 seconds is sized for exactly that: a multi-select delete of 20 files takes about 2 seconds. The object key is validated against your token’s account ID before the delete runs; a key that resolves outside your own prefix is rejected as INVALID_OBJECT rather than treated as a cross-tenant lookup. A single database query both performs the delete and confirms the object existed, so deleting a name that’s already gone returns OBJECT_NOT_FOUND. To find the exact object key before deleting it, list your objects with Object List; to check storage usage after cleanup, see Account Stats.
string
required
The name of the object to delete. The object name must adhere to the following pattern: a to z, A to Z, 0 to 9, and _.

Response

string
Indicates whether the call was successful. “success” if successful, “error” if not.

Troubleshooting