Skip to main content
POST
/
api
/
canary
/
authentication
/
sign-in
/
email
Sign in with email
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"
}

Body

application/json
email
string
required

The email address of the user

password
string
required

The password for the user account

Example:

"StrongPassword123!"

Response

User signed in successfully