cURL
curl --request PUT \ --url https://backend.clipvision.ai/api/user/update-email/ \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "email_address": "[email protected]", "secret_key": "<string>", "new_email_address": "[email protected]" } '
{ "new_secret_key": "test_secret_key" }
This API endpoint allows a user to update their email address.
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 email