curl --request POST \
--url https://api.example.com/auth/login \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"phoneNumber": "<string>",
"password": "<string>",
"appAudience": {},
"sessionType": {},
"expectedUserType": {},
"deviceInfo": {
"deviceInfo.os": "<string>",
"deviceInfo.browser": "<string>",
"deviceInfo.model": "<string>",
"deviceInfo.appVersion": "<string>"
},
"ipAddress": "<string>",
"userAgent": "<string>",
"location": {
"location.latitude": 123,
"location.longitude": 123,
"location.city": "<string>",
"location.country": "<string>"
}
}
'