Trying to understand how to setup webhooks in flow to convert an existing flow that sometimes times out but not always. Trying to distill it down to a simple example.
"Sender"
- Flow Button
- Http - HTTP
- Method: Post
- URI: <Receiver's URL>
- Headers: Content-Type application/json
- Body: {"message": "Do Stuff"}
- Parse Json
"Receiver"
- When HTTP Request is Received
- Delay 10 minutes
- Response
- {"message":"Success"}
The real flow does stuff but its basically that.
So is converting this to Webhooks basically replacing the HTTP-HTTP action with HTTP-Webhook and setting the Subscribe URI to "Receivers" URL? I tried that, but Sender never got the message / stopped running and I had to cancel it.
Also what is the unsubscribe URI?