Authenticates a user given a user email and password.
{ "email":"<buzzy email address>", "password":"<buzzy password>" }
returns the Buzzy internal userid and authentication token.
POST /api/login { "email":"adam.ginsburg@gmail.com", "password":"password" }
You should get back something like:
Last updated 3 years ago
{ "status": "success", "data": { "authToken": "<token>", "userId": "<user id returned>" } }