Email Login API

The Signin API returns the tokens required to authenticate subsequent API requests.

Info
An account on QAnswer App is required. Register with an email and password.

A successful sign-in returns two tokens: accessToken and refreshToken.

The accessToken is valid for 10 minutes. Use the refreshToken to obtain a new one when it expires.

Each refresh issues a new refreshToken and invalidates the previous one.

Try it

POST

/api/user/signin


Try it
Code

Refresh your accessToken

POST

/api/user/refresh-jwt-tokens


Try it
Code