DELETE
/
v1
/
store
/
file
/
read
/
{key}
import { JigsawStack } from "jigsawstack";

const jigsaw = JigsawStack({ apiKey: "your-api-key" });

const response = await jigsaw.store.file.delete({
  "key": "image-123.png"
})

Path

key
string
required

The key of the file to be deleted.

x-api-key
string
required

Your JigsawStack API key

Response

success
boolean

Indicates whether the call was successful.

import { JigsawStack } from "jigsawstack";

const jigsaw = JigsawStack({ apiKey: "your-api-key" });

const response = await jigsaw.store.file.delete({
  "key": "image-123.png"
})