curl --request POST \
--url http://localhost:3091/v1/api/auth/login \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"password": "<string>"
}
'{}Validates credentials and returns JWT access and refresh tokens.
curl --request POST \
--url http://localhost:3091/v1/api/auth/login \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"password": "<string>"
}
'{}