Unlink a KV store from this project
DELETE
/api/v2/organizations/{organization}/projects/{project}/kv/{store_id}/link
const url = 'https://dashboard.quantcdn.io/api/v2/organizations/test-org/projects/test-project/kv/store-123/link';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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).
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organization
required
string
Organization identifier
Example
test-orgproject
required
string
Project identifier
Example
test-projectstore_id
required
string
KV store identifier
Example
store-123Responses
Section titled “Responses”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}