cURL
curl --request PUT \ --url https://api.quiva.ai/storage/kv/{bucket}/entries/{key} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "John Doe", "email": "[email protected]", "age": 30 } '
{ "message": "success" }
Creates or updates a key-value entry in the specified bucket
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Name of the bucket
Key of the entry
Value to store in KV entry
Bad Request
"success"