Search results

  1. rjaiswal

    Softphone for Mac

    I've used this in the past.... https://apps.apple.com/us/app/telephone/id406825478?mt=12
  2. rjaiswal

    DEAL $59.99: OBi 2182 Color WiFi GVoice Phone

    It's now $59.99... wow
  3. rjaiswal

    FOOD FOR THOUGHT SMS reasons for

    Also some people like to communicate via SMS. Having it on a PBX, allows you to communicate with those people. You can use a WebRTC client (on the desktop side), or a softphone (on the mobile side). I know of a couple of businesses who use SMS to send reminders for appointments. Hosting it...
  4. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    Everything I found on the internet needed a "server" somewhere running modules written by Slack and Flowroute. I didn't want to deal with keeping another server up-to-date with patches and stuff, for something that might be used 1-2 times a month...
  5. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    The custom app in Slack to send messages to Flowroute looks like this: To send a new message, You put the use the following string: 1NXXXXXXXXX: [message] To reply to a message, you use the reply in thread feature of slack. This way I know I've replied to a message. I thought about keeping...
  6. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    In Slack, I have a custom integration to receive messages from Flowroute, and a custom app to send messages to Flowroute To receive messages, I'm using "Incoming Webhooks". Here are my integration settings: I did it this way, because I was lazy. :-) Everything is setup for me to receive...
  7. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    The final step is a logic app Control called "For each". The logic app builder added it when I started creating the "Body" of the HTTP Post we will be using to send the Slack reply to Flowroute. "Select an output from previous steps" is the "messages" object from "Get Reply Text". I use this...
  8. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    The sixth step is setting the "JsonResult" variable. We'll use this variable in the following step. The "Value" is the output of the "Compose" in the previous step.
  9. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    The 5th step is converting JSON array we get "Parse Json to get SMS Number" This is the expression I use: string(body('Parse_Json_to_get_SMS_Number'))
  10. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    The forth step is parsing the info we got from "HTTP 5" The "Content" is the "Body" ojbect retrieved from "HTTP 5". The Schema created using a sample payload from "HTTP 5"
  11. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    The third step is another HTTP Get from Slack "HTTP 5" This time we are recalling the original message that started the thread. This is so we can get the SMS number from it. The original message in Slack is located using the "thread_ts" object from "Get Thread TS and TS" parser.
  12. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    The second step I'm doing is retrieving the reply message from the thread: The "Content" is the "Body" object of the reply from Slack from "HTTP 2". The schema was created by using a sample payload from "HTTP 2"
  13. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    In the first part of the "False" condition, we recall the reply thread. The "ts" is from the parsing of "Get Thread TS and TS" The "Channel" in the URL was retrieved using the Slack API tools. Since I'm only interested in 1 thread, I decided to hardcode this value. The Headers are also...
  14. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    The "False" condition is much more complex. I have to figure out which Slack thread the reply is from, recall that slack thread, parse it for the SMS number, parse the thread reply for the reply message, and the do a HTTP Post to Flowroute. Here are those steps:
  15. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    I'm using the "OR" condition. This will route the logic app to the 2 trees I have defined. The 1st part of the condition is the "SMS_Number" variable. The 2nd part of the condition is "contains". The 3rd part of the condition is an "expression". This is the expression "string(1)" What I'm doing...
  16. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    I'm using a Condition to determine how the message was received. If it's a new message from Slack, It will use the "True" path. If it's a reply to a thread, it will use the "false" path
  17. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    "Init SMS Number" is a variable. I am using the "Init Variable" function. "Init Json Result" is a variable. I am using the "Init Variable" function. "Get Thread TS and TS" is a Data Operation. I'm using the "Parse JSON" function. In the Content Section, I'm selecting the "Body" of the "HTTP...
  18. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    The next 5 functions are used to parse the incoming Slack message, so that it is formatted correctly to be sent to Flowroute.
  19. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    Sending SMS messages took a lot longer to figure out. I had to use a 2nd logic app to receive messages from Slack and send them to Flowroute to be sent as SMS In the 2nd logic App, I started first with "When a HTTP request is received" I used the URL that is generated here in Slack. This is...
  20. rjaiswal

    TUTORIAL Sending and Receiving Flowroute SMS using Slack thru Azure Logic App

    Hi! So, I've been spending my off time figuring out how to efficiently use Flowroute SMS for my business needs. I decided to try and see if I could use Slack as my front end. I use a Mac, a desktop PC, an iPhone, and an Android phone. I needed something that would run on all of these...
Get 3CX - Absolutely Free!

Link up your team and customers Phone System Live Chat Video Conferencing

Hosted or Self-managed. Up to 10 users free forever. No credit card. Try risk free.

3CX
A 3CX Account with that email already exists. You will be redirected to the Customer Portal to sign in or reset your password if you've forgotten it.
Top