Official Plugins (Kuzzle v2.x)
S3 v2.x
2

delete #

Deletes a previously uploaded file.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_plugin/s3/files/<fileKey>
Method: DELETE

Other protocols #

Copied to clipboard!
{
  "controller": "s3/file",
  "action": "delete",

  "fileKey": "xen/<uuid>-headcrab.png"
}

Arguments #


Response #

Returns a boolean indicating that the file has been deleted from S3.

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "action": "delete",
  "controller": "s3/file",
  "requestId": "<unique request identifier>",
  "result": true
}

Possible errors #