# THIS PART IS ALL VERY GROSS AND I NEED TO REBUILD IT TO NOT BE GROSS I WROTE IT WHILE I WAS HUNGRY LEAVE ME ALONE $master_list = @() # Disable the progressbar behavior since it kills performance when streaming in a response $ProgressPreference = 'SilentlyContinue' $ProfileResponse = Invoke-WebRequest -Uri 'https://cp.serverdata.net/ControlPanel/cpapi/AdministratorEventLog/GetEventLog' ` -WebSession $Session -Method 'POST' -Body ($log_request | ConvertTo-Json -Compress) -SkipHeaderValidation -ContentType "application/json; charset=UTF-8" -Headers @{ "Origin" = "https://cp.serverdata.net" "Accept" = "application/json, text/plain, */*" } $ProgressPreference = 'Continue'