Delete file version

Delete file version API

DELETE https://api.imagekit.io/v1/files/:fileId/versions/:versionId

Delete any non-current version of a file.

Path Parameters

NameTypeDescription

fileId*

string

The unique fileId of the uploaded file. fileId is returned in list files API and upload API.

versionId*

string

The unique versionId of the uploaded file's version. This is returned in list files API and upload API as id within the versionInfo parameter.

Headers

NameTypeDescription

Authorization*

string

base64 encoding of your_private_api_key:

Note the colon in the end.

Response structure and status code (application/JSON)

In case of an error, you will get an error code along with the error message. On success, you will receive a 200 status code with the file details in JSON-encoded response body.

Examples

Here is the example request to understand the API usage.

# The unique fileId and versionId of the uploaded file. fileId and versionId (versionInfo.id) is returned in response of list files API and upload API.
curl -X DELETE "https://api.imagekit.io/v1/files/file_id/versions/version_id" \
-u your_private_api_key:

Last updated