heidloff.net - Building is my Passion
Post
Cancel

Integrating Applications without writing Code

IBM App Connect is an IPaaS (Integration Platform as a Service) to connect different applications without having to write code. Similarly to IFTTT users are typically business users or citizen developers from line of business departments.

App Connect provides currently roughly 50 connectors to integrate applications like Salesforce, SAP, Slack and Gmail. See the documentation for details. Users can graphically build flows that are either event-triggered, for example if a document is changed in a Cloudant database, or flows that implement APIs which are triggered via REST.

The tricky part of services like App Connect is how to pass data between the different applications. I like the App Connect approach a lot. In my previous job I implemented something similar and I know it was difficult.

Most applications provide REST APIs and use JSON, but JSON doesn’t have a schema and no standard way to transform and query data in JSON. To work around this, IBM built a Node.js library JSONata which has been inspired by XPath. This library is available as open source.

Below is a simple sample. I trigger a flow via an “/email nheidloff” command in Slack which reads my email address via a REST API request and sends me an email.

This screenshot shows how to invoke the REST API. When pressing on the icon right to the URL field an in-context dialog pops up showing all available fields from previous nodes in the flow. In this case I’ve selected the ‘Message Body’ field from the Slack node to read the user name.

image

In the next node I read the response of the REST API request ‘Response body’. In order to access the fields of this response in the next Gmail node you can generate a schema simply by providing a sample JSON response.

image

image

After the JSON schema has been generated you can access single fields again in the in-context dialog, in this case the email address.

image

To find out more about App Connect get a free lite account on IBM Cloud and give it a try.

Featured Blog Posts
Disclaimer
The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions.
Trending Tags