Rollbase Low-Code Integration with Third Party

Rollbase Low-Code Integration with Third Party

Posted on October 03, 2016 0 Comments

We saw how easy it is to create a complete responsive application using point and click/drag and drop methodologies in this blog, and we saw that we get a lot of built-in services here.  But you may ask, “what do you do when one service does not exist yet or you need to integrate with a third party?”

Third Party Application IntegrationIn this blog post, we will see how easy this can be achieved using the power of Rollbase Trigger.  To make the blog more interesting let’s take the case, where, in our travels app, we want to send an SMS message to alert us when a user enters a star rating below 3 for a destination. And to make it even more useful, we will illustrate this by showing the code for sending SMS from Rollbase using Twilio.

First, obtain the following from your Twilio account:

  1. Account SID
  2. Auth Token

Second we go into the object definition of the destination object and create a new trigger of type "Object Script". We need to specify the following:

  1. Under which condition we want to send the SMS .In our case, we will specify "on any update of the Rating field."
  2. We code some JavaScript to:
    1. Limit sending an SMS for rating less or equal to 2
    2. Call Twilio Rest API
1.if ( {!Rating} <= 2 )  {
2.  rbv_api.println("rating is low - sending sms");
3.  var url="https://<yourAccoundSID>:<yourAuthToken>@api.twilio.com/2010-04-01/Accounts/<yourAccountSID>/SMS/Messages";
4.  var params= {"Body":"Low rating on {!city}", "To":"+<countryCode><phoneNumber1>","From":"+<countryCode><phoneNumber2>"};
5.  var finalResponse = rbv_api.sendHttpPost(url, params, null);
6.  rbv_api.println(finalResponse);
7.}

Note, at line 4, how the SMS text will contain the destination city name ("Low rating on {!city}"). The key point here is that we have access to all the data of the Destination object and its related objects.

In conclusion, integrating with additional services and a third party is a breeze.  It’s programmed using JavaScript making the solution standard and portable; there is no vendor lock-in.

 

Thierry Ciot

Thierry Ciot

Thierry Ciot is a Software Architect on the Corticon Business Rule Management System. Ciot has gained broad experience in the development of products ranging from development tools to production monitoring systems. He is now focusing on bringing Business Rule Management to Javascript and in particular to the serverless world where Corticon will shine. He holds two patents in the memory management space.

Comments

Comments are disabled in preview mode.
Topics

Sitefinity Training and Certification Now Available.

Let our experts teach you how to use Sitefinity's best-in-class features to deliver compelling digital experiences.

Learn More
Latest Stories
in Your Inbox

Subscribe to get all the news, info and tutorials you need to build better business apps and sites

Loading animation