post https://example.com/web/report-logs//reject
Rejects the specified report log.
Response
Rejects the specified report log.
xxxxxxxxxx
import requests
​
url = "https://example.com/web/report-logs//reject"
​
headers = {"accept": "application/json"}
​
response = requests.post(url, headers=headers)
​
print(response.text)