cURL
curl --request POST \ --url https://api.hixbe.com/account/auth/sign-in \ --header 'Content-Type: application/json' \ --data ' { "email": "user@example.com", "password": "StrongPass123!" } '
{ "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." }
"user@example.com"
"StrongPass123!"
Login successful, refresh token set in cookie
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Was this page helpful?