When I am trying to filter emails in my inbox using the following Python code snippet,
sender_email = '[email protected]'
filter_expression = f"sender/emailAddress/address eq '{sender_email}'"
url = f"https://graph.microsoft.com/v1.0/users/{user_principal_name}/mailFolders/Inbox/messages?$filter={filter_expression}&top=1000"
I receive the following empty response
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('abc%40test.de')/mailFolders('Inbox')/messages",
"value": []
}
But if I read all mails without filtering, I receive the correct result:
...
"subject": "Scanned images",
...
"sender": {
"emailAddress": {
"name": "Test User",
"address": "[email protected]"
}
},
"from": {
"emailAddress": {
"name": "Test User",
"address": "[email protected]"
}
},
...
Interestingly if I use a filter for the subject, I receive the correct result email
filter_expression = f"startswith(subject, 'Scanned')"
Here is the code I use for sending the request
def graph_get(url, token):
headers = {"Authorization": f"Bearer {token}"}
r = requests.get(url, headers=headers)
return r.json()
response = graph_get(url, token)
What am I doing wrong with my sender/emailAddress/address filter? Any ideas?
In some cases, filtering
sender/emailAddress/address
with eq operator might not work. As an alternative, you can filter it with startsWith operator by modifying your code like this:I registered one Azure AD application and granted
Mail.Read
permission of Application type as below:Now, I generated access token using client credentials flow via Postman with below parameters:
Response:
When I ran below python code by modifying the filter expression and including above token, I got the results successfully as below:
Response: