Twilio is a cloud communications platform that allows businesses to integrate voice, video, messaging, and authentication functionalities into their applications. This integration enables you to make calls directly from various pages within the CRM.

Make a Call

  • Lead Page: A call button is available in the right section above lead details. Use this button to initiate a call, but ensure the Mobile No field in the Person section includes the country code.


  • Deal Page: In the Contacts section on the right side. You can add multiple contacts and designate a primary contact. The call button will utilize the primary contact's number.

  • Contact Page: Directly initiate a call by clicking the Mobile No displayed below the contact's name.

Call Pop-up

Upon making or receiving a call, a pop-up window appears displaying:

  • Caller name

  • Mobile number

  • Call status

  • Call duration

  • Mute button

  • Note button

  • Action buttons (Accept, Reject, Cancel Call)


This window can be minimized, allowing navigation to other screens, while remaining accessible in the far-right corner of the navbar.

Take Notes during a Call

While on a call, you can take notes using the note button. These notes are saved in the Call Log for later viewing and editing.

Twilio Setup

To configure Twilio for use within the CRM, follow these steps:

  1. Twilio Subscription: Obtain an active Twilio subscription (refer to Twilio's documentation for details).

  2. Twilio Credentials: From your Twilio account, retrieve your Account SID, Auth Token, and Twilio Mobile Number.

  3. Desk View: Switch to the desk view by clicking the profile button in the top left corner and selecting "Switch to Desk."


  4. Twilio Settings: Navigate to Twilio Settings and add your Account SID and Auth Token. You can also enable call recording at this point.

  5. Twilio Agents: Go to Twilio Agent and add users (agents) with Twilio mobile numbers designated for making calls.

    Make sure the Twilio number added does not contain spaces and special characters (it can still have + at the start)

Twilio API Configuration

For your CRM's API to connect with Twilio, perform the following configurations within Twilio:

  1. Incoming Call API URL: Under Phone Numbers -> Manage -> Active Numbers, select your mobile number. Locate the Voice Configuration form and within the "A call comes in" section, add the following URL to the URL field:

    "https://<yoursitename>/api/method/crm.integrations.twilio.api.twilio_incoming_call_handler"


    This URL is responsible for handling incoming calls.

  2. Outgoing Call API URL: Navigate to Phone Numbers -> Manage -> TwiML apps and select your app. In the Voice Configuration -> Request URL field, enter the following URL:

    "https://<yoursitename>/api/method/crm.integrations.twilio.api.voice"


    This URL is used for making outbound calls.

Please refer to Twilio's official guide for any additional Twilio configuration requirements. - link

On this page