Login
Authenticate a user with email and password.
POST /api/auth/loginRequest Body
{
"email": "user@example.com",
"password": "password123"
}Response
{
"data": [
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
}
]
...
}