SAC with Web Application enabled.
A SAC maintenance upgrade was rolled out October 3 2022 where URI special characters were handled in in accordance with RFC1738 such as :
"%", "{", "}", "|", "\", "^", "~", "[", "]", etc…
Since the URIs used by “video-tools” application are referenced these characters and were no encoded, the request was blocked in accordance with the updated security policies.
Added URL encoding into the Web Application with encodeURIComponent() function to send the request as
request: usePostMethod ? JSON.stringify(request) : encodeURIComponent(JSON.stringify(request))
Could also have manually encoded the query string parameters using https://www.urldecoder.org/ to get the same output manually.
As a best practice, always encode URLs being sent into SAC.