cURL
curl --request PUT \ --url https://api.quiva.ai/secrets \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "key": "api-key", "value": "sk_live_abcdefghijklmnopqrstuvwxyz" } '
{ "message": "success" }
Stores a new secret or updates an existing one in the secrets bucket
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Secret details to store
The unique identifier for the secret
The secret value to store
Secret created/updated successfully
"success"