Skip to content

Twilio Serverless Toolkit code + instructions to integrate Twilio Frontline with Azure AD and Hubspot CRM

License

Notifications You must be signed in to change notification settings

ThunderQuoteTeam/twilio-frontline-AzureAD-Hubspot-integration

Repository files navigation

Twilio Serverless framework for integrating hubspot with Twilio Frontline

(A) Prerequisites

You will need:

  1. A Free Hubspot Account
  2. A Twilio Account
  3. Twilio phone numbers enabled for SMS and WhatsApp. You will need to onboard WhatsApp to gain access to the WhatsApp Business API.
  4. A Twilio Frontline Instance. Follow the instructions on the node-js-demo-quickstart until the "Configure the Twilio Frontline Integration Service" section.
  5. Twilio CLI and Twilio Serverless Toolkit installed.

Optional:

  1. Microsoft Azure AD App registration for integration into Single Sign-On and Identity APIs for Workers. See section C on configuring SSO with Azure AD.

(B) Instructions

  1. Pull the repository
  2. Install dependencies via npm / yarn
npm install
  1. Copy .env.example to .env
cp .env.example .env
  1. Fill in the environment values in the copied .env file. You will need
  • your Hubspot API key,
  • the Frontline Realm SID - via console
  • the Twilio Conversations Service SID associated with your Twilio Frontline instance.
  • Microsoft Azure AD Application Registration App ID, App Secret and Tenant ID (Optional, useful for getting Worker Name etc)
  1. Deploy the code to twilio:
# Automatically deploy to a development environment with frontline-hubspot as a name prefix. 
# If you want a different name, edit package.json's name attribute, or adjust .twilioserverlessrc
twilio serverless:deploy
# Specify production environment
twilio serverless:deploy ---production
  1. Visit the Twilio Console and look for the recently deployed service. Click on Service Details and take note of the domain of the deployed environment (e.g. frontline-hubspot-0000.twil.io)
  2. Go to the Twilio Frontline Configuration page. Under each URL, put the following and press save. Replace ${DOMAIN} with the domain obtained in step 6.
Name URL
CRM Callback URL https://${DOMAIN}/get_contact
Outgoing Conversations Callback URL https://${DOMAIN}/outbound_callback
Templates Callback URL https://${DOMAIN}/templates_callback
  1. Configure the Webhooks for the Conversations API. Under Post-Event URL, put in the following URL https://${DOMAIN}/conversation_callback, replacing ${DOMAIN} with the domain obtained in step 6.

  2. Test Your integration in the Frontline App.

(C) Configuring SSO integration and worker contact integration with Azure AD.(Optional)

If you are not using the example Okta integration in the Twilio quick start, you can configure Frontline to login via Azure AD login (Microsoft 365). This will also allow you to read Worker (Agent) name and data via your Active Directory Information. You will need administrator privileges in your Azure AD tenant.

SAML SSO Integration

Before starting, make sure a Twilio Frontline service has been setup. After that, visit the Frontline Console SSO configuration page and leave it open. You may fill in the company name beforehand in the Twilio Console.

Configuring Azure AD

  1. Visit Enterprise applications in the Azure Active Directory Admin Center. Click New Application
  2. Click on Create your own application
  3. Type in a name. Leave the selection as 'Non-gallery App'. Wait for the app to be created.

C.Step3

  1. Navigate to Users and groups in the Azure AD Admin portal and add any users/groups you want to have access to Twilio Frontline.

  2. Navigate to Single Sign On. Click SAML when prompted to select a single sign-on method.

C.Step5

  1. Edit the Basic SAML Configuration
  • Set the Reply URL (Assertion Consumer Service URL) to https://iam.twilio.com/v2/saml2/authenticate/JBxxxx. Replace the example Realm SID, JBxxxx, with your own Realm SID, which you can find on the Frontline Console SSO configuration page.

  • Set the Identifier (Entity ID) to https://iam.twilio.com/v2/saml2/metadata/JBxxxx. Again, replace the Realm SID (JBxxxx) with your own Realm SID.

  • Press Save. The configuration should look something like this:

C.Step6

  1. Under User Attributes & Claims , edit it so it looks like the screenshot below. You will need to add the email and roles claims that are required by Twilio Frontline.

C.Step7a

  • email should be mapped to user.mail attribute

C.Step7-email

  • roles should be a constant (agent), so type it in in double quotes when adding (i.e Name: Source:"agent" for the source)

C.Step7-roles

  • Once done, click on SAML-based Sign-on at the top to continue

Configuring the Twilio Frontline Console SSO Configuration

C.Step8

  1. Download the base64 encoded version of the SAML Signing Certificate. Open the File with a text editor and copy the contents of the file to the X.509 Certificate field in the Frontline Console SSO configuration page

  2. Copy the Login URL and paste it to the SSO URL field in the Frontline Console SSO configuration page

  3. Copy the Azure AD Identifier and paste it into the Identity provider issuer URL field in the Frontline Console SSO configuration page C.Step10

  4. Save your changes on both the Azure AD side and the Twilio Console side.

  5. Test login on the Twilio Frontline Mobile App.

Application Setup

  1. Visit the Azure Active Directory Admin Center and navigate to the App registrations page. Search for the application under "All Applications". Click on the application. C.Step14

  1. Take note of the Application (client) ID and Directory (tenant) ID. This will be used for app integration (Section B, Step 4)

C.Step15

  1. Navigate to Certificate & Secrets. Under Client secrets, click New Client Secret. Fill in the details and press Add. Take note of the generated App Secret value - this will be used for app integration (Section B, Step 4)

  2. Navigate to API Permissions. Click Add a permission, and select Microsoft Graph -> Application Permissions. Search for User.Read.All and add it as a permission. Click Grant admin Consent for (OrganisationName)

Credits

Props to the Twilio Support Team for helping to answer questions and issues encountered while implementing this.

Have any questions or need help to do any custom implementations? Feel free to drop us an email at [email protected].

Changelog

2022-01-28 Updated to use latest version (v2) of the Twilio Frontline Callbacks (https://www.twilio.com/docs/frontline/callback-versions) Note that this version of the code is NOT compatible with v1

About

Twilio Serverless Toolkit code + instructions to integrate Twilio Frontline with Azure AD and Hubspot CRM

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published