curl --request POST \
--url https://sgja-api.vohoangphuc.com/auth/login \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"password": "<string>"
}
'{
"accessToken": "<string>",
"refreshToken": "<string>",
"tokenType": "Bearer",
"expiresIn": 123
}Authenticates an applicant and returns access and refresh tokens
curl --request POST \
--url https://sgja-api.vohoangphuc.com/auth/login \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"password": "<string>"
}
'{
"accessToken": "<string>",
"refreshToken": "<string>",
"tokenType": "Bearer",
"expiresIn": 123
}