cURL
curl --request GET \ --url https://api.example.com/store/items
{ "key": "<string>", "value": "<unknown>", "namespace": [ "<string>" ] }
Get an item from the store by key.
Returns 404 if no item exists at the given namespace and key.
Key of the item to retrieve.
Namespace path. Use dot-separated string or repeated query params.
Successful Response
Response model for getting items
The item's key within its namespace.
The stored value.
The namespace path where this item is stored.