cURL
curl --request PUT \ --url https://api.example.com/store/items \ --header 'Content-Type: application/json' \ --data ' { "namespace": [ "<string>" ], "key": "<string>", "value": {} } '
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>", "input": "<unknown>", "ctx": {} } ] }
Create or update an item in the store.
If an item with the same namespace and key already exists, its value is overwritten. Values must be JSON objects (dictionaries).
Request model for storing items
Storage namespace
Item key
Item value (must be a JSON object)
Successful Response