application/json

Body

  • email string Required
  • password string Required

Responses

  • 200 application/json

    Login successful

    Hide response attribute Show response attribute object
    • token string
  • 401

    Authentication failed

POST /signin
curl \
 --request POST 'http://localhost:5000/api/signin' \
 --header "Content-Type: application/json" \
 --data '{"email":"string","password":"string"}'
Request examples
{
  "email": "string",
  "password": "string"
}
Response examples (200)
{
  "token": "string"
}