curl --request PATCH \
--url https://api.orq.ai/v2/memory-stores/{memory_store_key} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>",
"ttl": 123,
"path": "<string>"
}
'{
"_id": "<string>",
"key": "<string>",
"project_id": "<string>",
"description": "<string>",
"created": "<string>",
"updated": "<string>",
"embedding_config": {
"model_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider": "openai",
"integration_id": "<string>",
"top_k": 123
},
"created_by_id": "<string>",
"updated_by_id": "<string>",
"ttl": 123
}Update the memory store configuration
curl --request PATCH \
--url https://api.orq.ai/v2/memory-stores/{memory_store_key} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>",
"ttl": 123,
"path": "<string>"
}
'{
"_id": "<string>",
"key": "<string>",
"project_id": "<string>",
"description": "<string>",
"created": "<string>",
"updated": "<string>",
"embedding_config": {
"model_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider": "openai",
"integration_id": "<string>",
"top_k": 123
},
"created_by_id": "<string>",
"updated_by_id": "<string>",
"ttl": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique key identifier of the memory store
The description of the memory store. Be as precise as possible to help the AI to understand the purpose of the memory store.
The default time to live of every memory document created within the memory store. Useful to control if the documents in the memory should be store for short or long term.
Memory store successfully updated.
The unique identifier of the memory store
The unique key of the memory store. The key is unique and inmmutable and cannot be repeated within the same workspace.
The project unique identifier. This entity is assigned based on the provided path property
The description of the memory store. Be as precise as possible to help the AI to understand the purpose of the memory store.
The creation date of the memory store
The last update date of the memory store
Show child attributes
openai, groq, cohere, azure, aws, google, google-ai, huggingface, togetherai, perplexity, anthropic, leonardoai, fal, nvidia, jina, elevenlabs, litellm, cerebras, openailike, bytedance, mistral, deepseek, contextualai, moonshotai Number of results to return
The user ID of the creator
The user ID of the last updater
The default time to live of every memory document created within the memory store. Useful to control if the documents in the memory should be store for short or long term.
Was this page helpful?