Skip to main content
PUT
/
store
/
items
Put Store Item
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": {}
    }
  ]
}

Body

application/json

Request model for storing items

namespace
string[]
required

Storage namespace

key
string
required

Item key

value
Value · object
required

Item value (must be a JSON object)

Response

Successful Response