cURL
curl --request POST \ --url https://backend.clipvision.ai/api/user/login/ \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "email_address": "[email protected]", "password": "<string>" } '
{ "is_authenticated": true, "jwt_token": "eyJwt...." }
This API endpoint allows a user to authenticate themselves.
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 authenticated the user