{
"email": "string",
"password": "string",
"clientId": "string",
"rememberMe": true
}
curl --location --request POST '/v1/auth/login' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "string",
"password": "string",
"clientId": "string",
"rememberMe": true
}'
{
"user": {
"userId": "string",
"email": "string",
"displayName": "string",
"identity": "IDENTITY_UNSPECIFIED",
"role": "USER_ROLE_UNSPECIFIED",
"permissions": [
"string"
],
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z",
"status": "USER_STATUS_UNSPECIFIED",
"emailVerified": true,
"phone": "string",
"avatarUrl": "string",
"timezone": "string",
"language": "string"
},
"accessToken": "string",
"refreshToken": "string",
"expiresIn": 0
}