I am in the process of building out a Connect webhook call to notify our app when a document is signed. This webhook goes through a proxy for security and resilience reasons and then on to an AWS API Gateway.
the JSON payload for our Document is VERY large (38000 lines) due to lots of repeated fields with drop downs that themselves have lots of options.
This has proven interesting in that one of the proxy’s scans for malware in the payload is taking 18 seconds. However, if I feed that payload through a json minifier it scans in about 1 second
I dontt have a way to test it as I cannot point the Connect config to our proxy because its not exposed to the internet and (as its a large corp) I cannot just put the proxy into a higher environment without lots of rigor.
The payload I am testing with was copied from the Connect logs (UI) so I don’t fully trust that its a faithful representation of the payload formatting….
so: Can someone tell me if the Connect payload for a Rest V2.1 webhook for an Evelope Signed event is minified?
Thanks