Skip to main content
DELETE
/
store
/
{store}
/
kv
/
batch
Delete multiple keys
curl --request DELETE \
  --url https://platform.versori.com/api/v2/store/{store}/kv/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "keys": [
    [
      "<string>"
    ]
  ],
  "options": {
    "ifVersionstamp": "<string>",
    "cascade": true
  }
}
'
{
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication used by the Versori Platform. External consumers must provide an API key, however internal consumers must provide a JWT id_token issued by our IdP.

Path Parameters

store
string<ulid>
required

Body

application/json
keys
string[][]
options
object

Response

200 - application/json

Keys deleted successfully

status
string