get https://example.com/web/report-logs//exports/
Retrieves a single export by export ID.
Response
Retrieves a single export by export ID.
xxxxxxxxxx
import requests
​
url = "https://example.com/web/report-logs//exports/"
​
headers = {"accept": "application/json"}
​
response = requests.get(url, headers=headers)
​
print(response.text)