Calling Extensions SDK
The Calling Extensions SDK allows apps to provide a custom calling option to HubSpot users directly from a record in the CRM.
A calling extension consists of three main components:
- The Calling Extensions SDK, a JavaScript SDK that enables communication between your app and HubSpot.
- The calling settings endpoints, which are used to set the calling settings for your app. Each HubSpot account that connects to your app will use these settings.
- The calling iframe, which is where your app appears to HubSpot users and is configured using the calling settings endpoints.
For more information on the in-app calling experience, review this knowledge base article. Once your calling extension-enabled app is connected to HubSpot, it will appear as an option in the call switcher whenever a user makes a call from HubSpot.
If you don't have an app, you can create one from your HubSpot developer account. If you don't already have a HubSpot developer account, sign up for one here.
Please note: only outgoing calls are currently supported.
You have the option to test the Calling Extensions SDK on two different demo apps:
- The demo-minimal-js features a minimal implementation of the SDK using JavaScript, HTML, and CSS. View how the SDK is instantiated in index.js.
- The demo-react-ts features a real-life implementation of the SDK using React, TypeScript, and Styled Components to act as a blueprint for your app. View how the SDK is instantiated in useCti.ts.
Please note: these demo apps aren't fully functional calling apps and use mock data to provide a more realistic experience.
You can run the demo apps with or without installation. To install the demo on your local environment:
- Install Node.js on your environment.
- Clone, fork, or download the ZIP of this repository.
- Open your terminal, and navigate to the root directory of the project.
- Run one of the following commands:
- For the
demo-minimal-js
:
- For the
- For the
demo-react-ts
:
npm start
command will automatically open a new tab in your browser at https://localhost:9025/, and you may need to bypass a "Your connection is not secure" warning in order to access the application.
- Navigate to your records:.
- Contacts: In your HubSpot account, navigate to Contacts > Contacts.
- Company: In your HubSpot account, navigate to Contacts > Companies.
- Open your browser's developer console, and run the following command:
- If you've completed the installation steps, for the
demo-minimal-js
or thedemo-react-ts
:
- If you've completed the installation steps, for the
- If you've skipped the installation steps:
- For the
demo-minimal-js
:
- For the
- For the
demo-react-ts
:
- Refresh the page, and click the Call icon in the left sidebar. Click the Call from dropdown menu, and select the name of the demo app from step 2 (e.g. Demo App Local, Demo App JS, Demo App React).
- Click Call to see how the demo app integrates with HubSpot via the Calling Extensions SDK. You can also see the events logged to your browser's developer console.
To add the Calling Extensions SDK as a Node.js dependency to your calling app:
- For npm, run:
- For yarn, run:
The Calling Extensions SDK exposes a simple API for HubSpot and a calling app to exchange messages. The messages are sent through methods exposed by the SDK and received through eventHandlers
.
The following is a description of the events:
- Dial number: HubSpot sends the dial number event.
- Outbound call started: App notifies HubSpot when the call is started.
- Create engagement: HubSpot creates a call engagement with minimal information if requested by the app.
- Engagement created: HubSpot created an engagement.
- EngagementId sent to App: HubSpot sends the
engagementId
to the app. - Call ended: App notifies when the call is ended.
- Call completed: App notifies when the user is done with the app user experience.
- Update engagement: App fetches the engagement by the
engagementId
, then merges and updates the engagement with additional call details. Learn more about updating a call engagement.
To begin, create an instance of the CallingExtensions
object. You can define the behavior of your extension by providing an option's object when you create your extensions instance. This option's object provides an eventHandlers
field where you can specify the behavior of your extension. The following code block illustrates the available options and event handlers you can define:
The extensions
object provides the following event handlers that you can invoke to send messages to HubSpot or to specify other associated behavior. See examples below.
initialized
: send a message indicating that the soft phone is ready for interaction.
userLoggedIn
: sends a message indicating that the user has logged in.
userLoggedOut
: sends a message indicating that the user has logged out.
outgoingCall
: sends a message to notify HubSpot that an outgoing call has started.
callAnswered
: sends a message to notify HubSpot that an outgoing call is being answered.
callEnded
: sends a message to notify HubSpot that the call has ended.
callCompleted
: sends a message to notify HubSpot that the call has completed.
sendError
: sends a message to notify HubSpot that the calling app has encountered an error.
resizeWidget
: sends a message to notify HubSpot that the calling app needs to be resized.
The extensions
object provides the following event handlers that you can invoke when receiving messages in HubSpot or to specify other associated behavior. See examples below.
onReady
: message indicating that HubSpot is ready to receive messages.
onDial
: message indicating that the user has triggered an outbound call.
onEngagementCreated
: message indicating that HubSpot has createdonEngagementCreated
data.
onVisibilityChanged
: message indicating if the user has minimized or hidden the calling app.
defaultEventHandler
: default handler for events.
Test your app from a local environment
While you're in the process of building your application, you can manually set the iframe URL for your browser by setting a localStorage
value. This allows you to set a localhost URL for local testing.
To set the value, open the developer tools for your browser, and run the following JavaScript command in the developer console:
The name value will be the title that appears in the header of the calling app, and the url will be the URL used for the iframe. While this item is set, the name you set will appear as an option for the call provider when you click the call icon, and the calling app will use the iframe url you set.
Get your app ready for production
Using your API tool (e.g. Postman), send this payload to our settings API. Ensure you get the APP_ID of your calling app application and your app DEVELOPER_ACCOUNT_API_KEY.
The isReady
flag indicates whether the app is ready for production. This flag should be set to false during testing.
localStorage
.
Publish your calling app to the HubSpot marketplace
The final step once your app is setup is to list your calling app in the HubSpot marketplace. You can find more details here . You can also choose not to list it in the marketplace if this application is for internal use only.
Calling SDK | Frequently Asked Questions
How is user authentication handled?
The calling app should handle authentication.
Is Calling Extensions hosted on a CDN?
No. The Calling Extensions is very small and should be bundled with the call app. If bundling the file is not possible, the npm package includes a compiled UMD bundle that can be included into HTML (../node_modules/@hubspot/calling-extensions-sdk/dist/main.js).
When should an engagement be created versus updated?
A user can initiate a call from inside the HubSpot UI and outside the HubSpot UI (e.g. mobile app, redirected number, etc.) If a call is initiated from within HubSpot UI, HubSpot will create a call engagement and send the engagement to the calling app. Once the call finishes, the call app can update this engagement with additional call details. If a call is initiated outside of HubSpot UI, the app should create the call engagement.
What scopes are required as a part of the integration?
Add contacts and timeline scopes are required. These scopes ensure your application has access to contacts and the ability to create and update call engagements in the CRM.
Can this functionality be added to an already existing application in the marketplace or do I create a new app?
If you already have an existing app that serves the calling use case then you can directly add this functionality to your existing app. All customers who already have your app installed will get access to this new functionality without having to install the app again.
Can I integrate my existing soft phone application in the SDK?
Yes, integrating your existing soft phone application should be very easy. Just follow the steps in the documentation above to have your application up and running.
Can users use multiple integrations at the same time?
Yes, users can use multiple third-party calling integrations at the same time. They can use the provider switcher presented after clicking on the call button to seamlessly switch between providers.
Can free users install app integrations?
Yes, all users can install the app.
If a user already has my app installed, does the integration automatically show up?
Yes, if a user already has installed your app, and you are updating the same app with the calling extensions, the integration will automatically show up. Currently, there is no way for the developer to enable the calling app only to a subset of customers.
Can any user install or uninstall an app?
No, only users who have necessary permissions can install and uninstall an app. Learn more about how to review a user's permissions.
Can I place a call from a custom object?
Yes, calling integrations can place calls from custom objects as long as they only use the SDK to create the call. Each integration will need to verify that they only use the Calling SDK to create calls and to notify HubSpot in the outgoingCall
event.
First, verify that the integration is using the Calling SDK to create engagements in the outgoingCall event:
If createEngagement
is true, learn how to update your app information here.
Here is the example for the entire outgoingCall
event:
If you need further assistance, visit the HubSpot developer support forum.
Thank you for your feedback, it means a lot to us.