POST
/
api
/
memory
Store a new memory
curl --request POST \
  --url https://www.memoryplugin.com/api/memory \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "text": "<string>",
  "bucketId": 123,
  "source": "<string>"
}'
{
  "done": "ok"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Memory stored successfully

The response is of type object.