Authenticates a user using their email and password.
- Mock serverhttps://docs.speedysticks.com/_mock/openapi/login-password
- Productionhttps://api.speedysticks.com/login-password
curl -i -X POST \
https://docs.speedysticks.com/_mock/openapi/login-password \
-H 'Content-Type: application/json' \
-d '{
"email": "jane.doe@example.com",
"password": "supersecret123"
}'Authenticated successfully.
Response
{ "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "streamToken": "st_live_abc123xyz" }