Skip to main content
PUT
/
store
/
items
Store or update an item.
curl --request PUT \
  --url https://api.b-bot.space/api/v2/store/items \
  --header 'Content-Type: application/json' \
  --header 'bbot-api-key: <api-key>' \
  --data '
{
  "namespace": [
    "<string>"
  ],
  "key": "<string>",
  "value": {}
}
'
"<string>"

Authorizations

bbot-api-key
string
header
required

API key for authentication

Body

application/json

Request to store or update an item.

namespace
string[]
required

A list of strings representing the namespace path.

key
string
required

The unique identifier for the item within the namespace.

value
Value · object
required

A dictionary containing the item's data.

Response

Success