Skip to content

Unlink a KV store from this project

DELETE
/api/v2/organizations/{organization}/projects/{project}/kv/{store_id}/link
curl --request DELETE \
--url https://dashboard.quantcdn.io/api/v2/organizations/test-org/projects/test-project/kv/store-123/link \
--header 'Authorization: Bearer <token>'

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

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

Store unlinked successfully

Media typeapplication/json
object
success
boolean
message
string
Example
{
"success": true
}

Store not linked or invalid request

Media typeapplication/json
object
message
required

Error message

string
error
required

Error flag

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

Cannot unlink store owned by this project

Media typeapplication/json
object
message
required

Error message

string
error
required

Error flag

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