1
votes

Is it possible to have two webhook url configurations for incoming messages on programmable sms?

I have a messaging service linked to a number. But I also want twilio to send the incoming message as a POST request to another application, which is an inbox application.

1

1 Answers

1
votes

You can only have one SMS webhook URL associated with a Twilio number but that URL could point to your logic, which could intelligently forward the requests accordingly.

Another approach which would be simpler would be to add that logic into your Studio flow, right after the Trigger Widget, say using the HTTP Request Widget or Run Function Widget to notify your applications.

Alan