I was able to use "get_endpoints" because in that instance, the PARAMS are just {}. But with /public_api/v1/alerts/get_alerts/ : >>> PARAMS = {"request_data": {"filters": [{"field": "alert_id_list","operator": "in","value": [88299]}]}} >>> r = requests.post(url=url,headers=headers,params=PARAMS) >>> print(r.json()) {'reply': {'err_code': 500, 'err_msg': 'Got an invalid input while processing XDR public API', 'err_extra': 'request_data must be of type: dict'}} Am I missing something here? >>> type(PARAMS) <class 'dict'>
... View more