Skip to content

Unlink a KV store from this project

DELETE
/api/v2/organizations/{organization}/projects/{project}/kv/{store_id}/link

Remove access to a linked KV store from this project. The store must be linked (not owned by this project).

Authorizations

Parameters

Path Parameters

organization
required
string

Organization identifier

Example
test-org
project
required
string

Project identifier

Example
test-project
store_id
required
string

KV store identifier

Example
store-123

Responses

200

Store unlinked successfully

object
success
boolean
true
message
string

400

Store not linked or invalid request

object
message
required

Error message

string
The requested resource was not found
error
required

Error flag

boolean
true
{
"message": "The requested resource was not found",
"error": true
}

403

Cannot unlink store owned by this project

object
message
required

Error message

string
The requested resource was not found
error
required

Error flag

boolean
true
{
"message": "The requested resource was not found",
"error": true
}