Is it possible to have a fixed IP address for traffic from my workflow?

This topic was automatically generated from Slack. You can find the original thread here.

Andras Bondor : Hello! Is there a way to have a fixed IP for a specific workspace, so that whenever it does a webhook request to another host, the same IP address will always be used?

1 Like

Dylan Sather (Pipedream) : Hi , do you need to operate on the HTTP response from your webhook request within your workflow, or are you able to simply “fire and forget” the HTTP request (that is, you don’t need to utilize the HTTP response from the service in future steps)?

Andras Bondor : It’s a fire and forget - I don’t need the response, but the API I’m calling requires whitelisted IPs.

Dylan Sather (Pipedream) : great, thanks. Luckily we have a feature called $send.http() (docs here) that let you send a fire and forget request: it technically sends the HTTP request asynchronously, after your workflow is done. We send these requests from these IP addresses. Let me know if that works

Andras Bondor : That’s excellent, thank you very much!