Skip to main content
DELETE
/
store
/
items
Delete Store Item
curl --request DELETE \
  --url https://api.example.com/store/items \
  --header 'Content-Type: application/json' \
  --data '
{
  "namespace": [
    "<string>"
  ],
  "key": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Query Parameters

key
string | null

Key of the item to delete (query param alternative).

namespace
string[] | null

Namespace path (query param alternative).

Body

application/json

Request body for deleting store items (SDK-compatible).

namespace
string[]
required

Namespace path of the item to delete.

key
string
required

Key of the item to delete.

Response

Successful Response