Categories
Blog

Top 3 CRM integrations to integrate your SaaS with in 2020

CRM softwares allow businesses to manage customer interaction and customer data. Additionally, CRM tools help companies manage vendors, partners and employee relations.

Businesses choose CRM tools to help them manage their business information and it is one of the first tools purchased, its no surprise that CRM tops our list of integrations any SaaS platform should connect to.

Here are the top 3 integrations SaaS companies pick in the CRM category:

Hubspot

Hubspot has over 73,400 customers in more than 120 countries

Hubspot is a leading growth platform that offers an end to end solution across marketing, sales, customer service, and CRM function. It is our number 1 pick for CRM integrations chosen by our users.

Salesforce

Salesforce has over 150,000 customers (SMB and Enterprise) as of October 2019

Salesforce is an all in one platform for sales, marketing and service. Additionally, Salesforce offers a suite of enterprise solutions that focus on marketing automation, app development, customer service and much more.

Pipedrive

Pipedrive has 50,000 customers as of March 2017

Pipedrive is the #1 user rated CRM solution that focuses on Sales CRM and pipeline management solution

Serverless OAuth Integration With Pathfix

Pathfix allows you to connect to these productivity apps and more in less than 5 minutes without managing any servers or SDK’s. Check it out here.

Categories
Blog

Top 5 productivity tools to integrate your SaaS with in 2020

Integrations help you build usability and scalability in your SaaS product. Building connections to other platforms allows you to be a part of your users stack.

However, identifying the platforms you want your SaaS to be connected to can be a long process.

Since Pathfix allows SaaS platform builders to connect to multiple providers, we wanted to share the top 5 productivity tools builders connect to.

What is a Productivity Software?

Productivity softwares help you work more efficiently by managing parts of your daily activities and handle daily tasks effectively.

Here are the top 5 productivity software’s you should integrate with in 2020:

Slack

Slack had around ten million daily active users and 85,000 paid organization users as of January 2019.

Slack brings team communication and collaboration into one place so you can get more work done. The first choice for team collaboration and communication, Slack is the top choice to build integrations.

G-Suite

G Suite had 4 million paying businesses, and 70 million G Suite for Education users as of January 2017.

G Suite is a suite of cloud computing, productivity and collaboration tools, software and products developed by Google Cloud. With 4 million+ businesses, G Suite is one of the most commonly used productivity tools which include Docs, Sheets, Forms and Slides.

Trello

Trello has 50 million registered users as of October 2019

Trello is a very popular visual list making application that focuses on team collaboration with its boards, lists, and cards. Trello boards are used anywhere from managing daily activities to product roadmap.

Google Calendar

Google calendar has over 500 million installs as of February 2017

Google Calendar is a time-management and scheduling calendar service developed by Google. Google calendar is the default calendar option for most users globally as it is available for free with every Gmail account (personal) and G Suite account (business). This makes it the top choice for any calendar related integration.

Intercom

As of February 2017, Intercom has 100,000 monthly active users. As of October 2018, Intercom has 30,000 paying customers.

Intercom is a message-based communication platform that allows businesses to communicate with customers/users within their website, application, social media or email.

Integrate with Pathfix

Pathfix allows you to connect to these productivity apps and more in less than 5 minutes without managing any servers or SDK’s. Check it out here.

Categories
Blog

The importance of integrations to the growth of a SaaS

Cloud solutions are growing rapidly. To put things in perspective, as of today, there more than 7K cloud saas solutions in the marketing space alone!

The reason is simple – it is not possible for one SaaS solution/platform to cover all the needs for any organization.

What does that mean for the user?

The user will end up having a set of solutions that when combined, allows them to get the functionality they need. But this means, they have multiple logins, data split across these solutions and have to spend time to bring all this data in one place.

What does this mean for the SaaS?

The chances of a SaaS solution being used more frequently, goes down. Your user will mostly stick to the solution that offers the most answers to their questions. The SaaS solution needs to be a part of the users existing stack to get more usability out of their system.

The solution: Integrations

Integrations allow you to connect and speak to the apps that your users are already consuming, this increases the frequency of usage and allows the user to sync their data across the applications they use.

Why should you consider integrations?

Scalability

Adding integrations to SaaS allows you to add more value to your product. By giving your users the ability to connect to other softwares, they get new ways of using your product. This helps you scale your product quickly, rather than working as a loner.

Usability

By being a part of your users existing software stack, you increase the odds of your software being used. Offering integrations to other platforms also means that your users get to do much more with the data collected from your software.

User Ease of Use

Not having to switch between apps, logins (think about those retention emails), you have simplified how your users end up using the data collected by your app. You have not just built dependency on your app but you have also eased the users ability to use your platform.

Building integrations are a key factor for any SaaS platform that is looking to grow their solution. With multiple API builders out there, that get you going in a few days, connecting them can be one in less than 5 minutes by using Pathfix.

Categories
Blog

Design of an OAUTH token management proxy

Introduction to OAUTH2

Oauth1 and 2 are frameworks for access delegation. It allows two apps to interface with each other on behalf of the end user. The end user will have an account in both apps.

OAUTH specification is not a protocol but a framework. OAUTH 1.0 followed a 3-legged framework and OAUTH 2.0 specifies a 2 legged one. The framework simplifies the level of access (scope) the requesting app has to the user data in the service provider’s app. All of it is managed by a sequence of tokens being exchanged between the two applications that finally authorizes the messages.

I need more than a few integrations

Ability to integrate into the end users work environment is synonymous to integrating into the tools or softwares they use. It’s no fun building a new notification system when you already have so many office-based communication software, i.e Slack, MS Teams etc. you could send your notifications to.

OAUTH to the rescue….

Beyond Notifications

What else can OAUTH Integrations be used for? A few use cases…

  • Read from End Users Cloud Drive (Like pictures, documents)
  • Push Data to CRM systems
  • Push and Pull Data to and from Marketing and Marketing Analytics Softwares
  • Integrate Devops with Ticketing Systems
  • Pull data from multiple systems to and provide ML based reporting
  • Read mail subscribers from popular bulk mail providers
  • Fetch videos from popular video service providers
  • Push messages into Social Media
  • Many more… The list is endless with so many special purpose softwares being built, Integration strategies will sit deep rooted into product development life cycle.

The problem was big enough, with no simple solution!

The Ideation Stage

Our Goal was to keep it simple. We wanted to make sure we stuck to our goal and designed a system that followed the same approach: Keeping it simple.

We listed out our set of questions that would led to designing the system the way it is.

Some of these were…

  • Should we create API and distribute SDK’s?
  • How many will we create?
  • What languages will we support?
  • Will we redefine our SDK to override those of the service providers?
  • Will we create API SDK’s for smaller service providers (who support OAUTH)?
  • How many versions of SDK’s will we maintain?
  • Will developers have to familiarize themselves with our API?
  • If we do create the libraries, should we not distribute the libraries as opensource?
  • Well, that would be one more batch of libraries, wouldn’t it?

The Aha Moment

“Can we create a pass through that only solves the access token management and refresh? We should not have new API, only an interrupt that does not aim to overachieve.”

Pathfix Was Officially Born

And here is what we came up with: An authorization solution that enables integrations without needing to download or install SDK’s – A passthrough solution.

Here is what it would do:

Authorization

  • Provide developers with a Redirect URL that they register with their Provider.
  • Ask the developer to register the ClientId and Secrets in our encrypted key vault.
  • When the user authorizes with the service provider they are redirected to Pathfix server.
  • Pathfix exchanges this information for a token and refresh token and holds it in a token vault with a some additional information. 1) Provider ( Slack, Ms Teams) 2) Your User’s Id and 3) Your Pathfix Id.

Integration

  • Pass all the messages with the exact payload as defined by the service provider to our servers
  • When doing this pass the same parameters: 1) Provider ( Slack, Ms Teams) 2) Your User’s Id and 3) Your Pathfix Id
  • We stamp the message with the token and send it over and give you the exact response returned by the provider.

All done in simple 2 step process, all done in less than 5 minutes!

Time to put it to test

We began to use it in most of our applications internally and it worked perfectly. Our developers absolutely loved the fact that they no longer had to build out frameworks, token management systems or servers to manage oauth.

No one had to learn any new API’s, or download and install SDK’s. It was a simple few lines of code with a few replacements, and we were off to the races!

42: The answer to everything

We just introduced a technology solution with libraries. A complete serverless oauth solution that was ideal for anyone who wanted to save time and effort (read: money!) while building integrations.

Check out Pathfix here. Need help? Email us!

Categories
Blog

Using a serverless oauth token management system

OAUTH2 – An Intro

Oauth1 and 2 are frameworks for access delegation. It allows two apps to interface with each other on behalf of the end user. The end user will have an account in both apps.

OAUTH specification is not a protocol but a framework. OAUTH 1.0 followed a 3-legged framework and OAUTH 2.0 specifies a 2 legged one. The framework simplifies the level of access (scope) the requesting app has to the user data in the service provider’s app. All of it is managed by a sequence of tokens being exchanged between the two application that finally authorize messages.

The Use Case

I am an online Photo Printing Service provider – PrintPixie. Registered User can upload a photo or connect to Cloud Drive where they hold their photos, select print parameters, pay and submit their order.

In this use case we have…

  • Client – PrintPixie
  • Cloud Drive Service Providers – Google, iCloud, Onedrive etc.
  • End User – Say megan@personalemail.com

The Integration Strategy

Here the integration strategy is as follows…

  • Fetch the list of photos (thumbnails) available on the end users cloud drive
  • Pull a high res image once the user has made a selection

There are two ways to implement this

  • Managed Server
  • Serverless

Managed Server – Implement code in PrintPixie

Assumption that PrintPixie is built using Python. Here is a sample top level task structure.

  1. Register printpixie with each of the service providers’ as a client app to fetch the clientId and clientSecret and provide a redirectUrl to your server (Task 3. Below)
  2. Download Python Authentication libraries/sdk’s for each of the providers.
  3. Create a server API to handle authorization redirect.
  4. Call the authentication library to get access token.
  5. Create a data store to hold end user Access Tokens.
  6. Write integration wrapper to
    GetListOfPhoto
    GetHighResLocation
  7. Fetch previously retrieved end user access token from data store and refresh if expired
  8. Map each of the above interfaces to the service provider API in their library.
  9. Make the call
  10. Attach tokens to call
  11. Log call
  12. Log errors
  13. Notify if there are any errors

Serverless- Use an OAuth proxy 

By redirecting your Authorization and Messaging through a service. Pathfix offers this. It proposes that we try a slightly different approach to all of this. Here is how they would do it.

  1. Register printpixie with each of the service providers’ as a client app to fetch the clientId and clientSecret and provide a redirectUrl (provided by Pathfix) to your server (Task 3. Below)
  2. Write integration wrapper to
    GetListOfPhoto
    GetHighResLocation
  3. Map each of the above interfaces to the service provider API in their library. (Usually using a JSON file to map API interfaces)
  4. Make the call

The entire process has reduced from the original 13 step process to a simplified 4 step process!

Summary

We see that there is a significant reduction in the time to live. Not only have the no. of tasks reduced but it has freed up a developers time to get to the specific integration much quickly. With this method if you have an Integration Strategy in mind (like PrintPixie did), you can go live in a couple days if not less.