with webhook API can I use port other than 443 for HTTPS webhook

Building a webhook API integration and my client does not want to use port 443 but rather something more discreet like 1043 or even 1960. I want to know if I can specifiy a port number on the webhook registrtion.

Hi @Murray62 ,

Based on this post, I assume you can simply define the port in your URL. So you could try setting example.com:1043 as the Webhook URL.

Thank you Teun for that response.