Join us May 13th & May 14th at Interrupt, the Agent Conference by LangChain. Buy tickets >
curl --request PUT \
--url https://api.example.com/store/items \
--header 'Content-Type: application/json' \
--data '
{
"namespace": [
"<string>"
],
"key": "<string>",
"value": {},
"index": false,
"ttl": null
}
'{
"detail": "<string>"
}curl --request PUT \
--url https://api.example.com/store/items \
--header 'Content-Type: application/json' \
--data '
{
"namespace": [
"<string>"
],
"key": "<string>",
"value": {},
"index": false,
"ttl": null
}
'{
"detail": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.langchain.com/llms.txt
Use this file to discover all available pages before exploring further.
Request to store or update an item.
A list of strings representing the namespace path.
The unique identifier for the item within the namespace.
A dictionary containing the item's data.
Controls search indexing - null (use defaults), false (disable), or list of field paths to index.
false Optional time-to-live in minutes for the item, or null for no expiration.
Success
Was this page helpful?