Sign in
Sign in
POST {{Environment_URL}}/v1/auth/user_correspondents/sign_in
This endpoint is responsible for authentication of user credentials and emition of JWT token to be used for API authorization.
"
expires_at" field is expressed in seconds. Once the token expires, it becomes invalid and a new one must be issued. To obtain a new token, simply sign in again.
Request Body
{
"email": "[email protected]",
"password": "iwFAW4HmNgZNjWM"
}Response
{
"token": "<token>",
"expires_at": 3600
}{
"error": "Invalid Email or password."
}
