How to establish webhook handshake for an app in production?

Hi @Nick_Youngblut,

Overall, the process for doing it in production is the same as shown in the docs; that is, you set up a small app that receives an HTTP request and responds accordingly. It’s just that in production, instead of that app residing on your local machine, you publish it to your preferred cloud platform (and of course do not need ngrok or Postman). In our case with Flowsana, we have a small web app running in our Azure instance.

In terms of CI/CD, yes, I think it would work to kick off the new webhook via something like a curl command. You’d still set the target to be the little web app running in your cloud instance to handle the handshake.

Does this all make sense? Please ask more if not.