cURL
curl --request POST \ --url https://www.memoryplugin.com/api/buckets \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "source": "<string>" } '
{ "message": "Bucket created successfully" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Name of the bucket to create
Client source identifier (e.g., 'chatgpt' for ChatGPT requests)
Bucket created successfully
Was this page helpful?