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

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

const result = await jigsawstack.store.kv.delete("jigsaw");
{
  "success": true,
  "message": "Record deleted successfully"
}

Path

key
string
required

The key of the key-value pair to delete.

x-api-key
string
required

Your JigsawStack API key

Response

success
boolean

Indicates whether the call was successful.

message
string

The message returned by the API.

import { JigsawStack } from "jigsawstack";

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

const result = await jigsawstack.store.kv.delete("jigsaw");
{
  "success": true,
  "message": "Record deleted successfully"
}