Curious what the problem is, I tried doing this with some other endpoints but decided to use this to continue testing. Sample of python code in use:
url = "https://10.xxx.xxx.xx:443/web_api/show-users"
headers = {"X-chkp-sid": sid, "Content-Type": "application/json"}
response = requests.post(url, headers = headers, verify = False)
print(response.content)
But it returns: <Response [400]> b'{\n "code" : "generic_err_invalid_syntax",\n "message" : "Payload is empty"\n}'
Am I doing something wrong / missing something with this request? I am verifying that I'm getting and passing the appropriate sid when making the attempt.
Thanks,