The link provided by MSFT to use is:
"'https://reports.office365.com/ecp/reportingwebservice/reporting.svc/MessageTrace"
from the following website:
"https://docs.microsoft.com/en-us/previous-versions/office/developer/o365-enterprise-developers/jj984328(v=office.15)"
I am only able to retrieve up to 2000 recent records using python:
import requests
req = requests.get(url, auth=(user, pwd)
How can I get all available logs which can be millions and how can I bypass the 2000 limit ?
Thank you