cURL
curl --request POST \ --url http://localhost:3000/api/canary/authentication/sign-in/email \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "password": "StrongPassword123!" } '
{ "statusCode": 400, "message": [ "Invalid input data" ], "error": "Bad Request" }
Authenticate a user using email and password
The email address of the user
"[email protected]"
The password for the user account
"StrongPassword123!"
User signed in successfully