Delete a curated company fact
curl --request DELETE \
--url https://api.memcontext.in/api/context-vault/memories/{memoryId} \
--header 'X-API-Key: <api-key>'const options = {method: 'DELETE', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.memcontext.in/api/context-vault/memories/{memoryId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.memcontext.in/api/context-vault/memories/{memoryId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true,
"memoryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Context Vault
Delete a curated company fact
Soft-deletes a curated company fact. Document-extracted memories are removed through document deletion instead.
DELETE
https://api.memcontext.in
/
api
/
context-vault
/
memories
/
{memoryId}
Delete a curated company fact
curl --request DELETE \
--url https://api.memcontext.in/api/context-vault/memories/{memoryId} \
--header 'X-API-Key: <api-key>'const options = {method: 'DELETE', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.memcontext.in/api/context-vault/memories/{memoryId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.memcontext.in/api/context-vault/memories/{memoryId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true,
"memoryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Authorizations
ApiKeyAuthCookieAuth
API key created from the MemContext dashboard. Keys are prefixed with mc_, bound to one workspace, and API-key requests cannot override that workspace.
Path Parameters
Query Parameters
Optional vault inside the workspace. Defaults to the workspace's default vault.
