Does Propexo Use Static IPs for Webhooks?
Last updated: September 16, 2025
Propexo does not use static IPs, rather, we use signed payloads to ensure webhook security and authenticity.
How It Works
Every webhook request includes a
propexo-signatureheader.The signature is generated using your integration’s secret key and the webhook payload, hashed with HMAC-SHA256.
You can validate authenticity by creating your own signature with the same method and comparing it to the header value.
If the signatures match, the webhook is genuine.
For more information on signed webhooks and setting them up, please refer to this page in our docs.