get https://example.com/web/report-logs//mails
Gets the mails that has been created as part of the result.
Response
Gets the mails that has been created as part of the result.
xxxxxxxxxx
import requests
url = "https://example.com/web/report-logs//mails"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
print(response.text)