cURL
curl --request PUT \ --url https://backend.clipvision.ai/api/user/update-password/ \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "email_address": "[email protected]", "secret_key": "<string>", "new_password": "<string>" } '
{ "is_updated": true }
This API endpoint allows a user to update their password.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
1
Successfully updated password