Module twilio

ballerinax/twilio Ballerina library

5.0.0

Overview

Twilio is a cloud communications platform that allows software developers to programmatically make and receive phone calls, send and receive text messages, and perform other communication functions using its web service APIs.

The Ballerina Twilio connector supports the Twilio Basic API version 2010-04-01, enabling users to leverage these communication capabilities within their Ballerina applications.

Setup guide

Before using the ballerinax-twilio connector you must have access to Twilio API, If you do not have access to Twilio API please complete the following steps:

Step 1: Create a Twilio account

Creating a Twilio account can be done by visiting Twilio and clicking the "Try Twilio for Free" button.

Step 2: Obtain a Twilio phone number

All trial projects can provision a free trial phone number for testing. Here's how to get started.

Notice: Trial project phone number selection may be limited. You must upgrade your Twilio project to provision more than one phone number, or to provision a number that is not available to trial projects.

  1. Access the Buy a Number page in the Console.

Get Phone Number

  1. Enter the criteria for the phone number you need, and then click Search.

Configure Phone Number

  • Country: Select the desired country from the drop-down menu.
  • Number or Location: Select the desired option to search by digits/phrases, or a specific City or Region.
  • Capabilities: Select your service needs for this number.
  1. Click Buy to purchase a phone number for your current project or sub-account.

Search Results

Notice: Many countries require identity documentation for Phone Number compliance. Requests to provision phone numbers with these regulations will be required to select or add the required documentation after clicking Buy in Console. To see which countries and phone number types are affected by these requirements, please see twilio's Phone Number Regulations site.

Step 3: Obtain a Twilio API Key, API Secret with Account SID

You can find API Keys related information under API keys & tokens section in your Twilio account. If you do not have an API Key and a Secret, please complete the following steps:

  1. Access the API keys & tokens page in your Twilio account, and then click on Create API key.

Twilio API Key

  1. Enter the criteria for the API Key you need, and then click Create.

Create API Key

  • Friendly name: Enter a human-readable name for your API key. It helps you identify the key later, especially if you have multiple API keys.
  • Region: Enter the geographical region where the API key will be used.
  • Key type: There are different types of API keys you can create,
    • Standard: Provides access to all Twilio API functionalities except for managing API keys and configuring accounts and subaccounts.
    • Main: Offers the same access as standard keys but also allows managing API keys and configuring accounts and subaccounts.
    • Restricted: Allows fine-grained access to specific Twilio API resources, enabling you to set permissions for different API endpoints
  1. Save the API key SID and the Secret in a safe place to use in your application.

API Key Info

Important: This secret is only shown once. Please make note of it and store it in a safe and a secure location.

  1. In order to obtain the Account SID of your Twilio account, you can visit your Twilio console.

Twilio Credentials

Quickstart

To use the twilio connector in your Ballerina application, modify the .bal file as follows:

Step 1 - Import the module

Import the Twilio module into your Ballerina program as shown below:

Copy
import ballerinax/twilio;

Step 2 - Create a new connector instance

To create a new connector instance, add a configuration as follows (You can use configurable variables to provide the necessary credentials):

Copy
configurable string apiKey = ?;
configurable string apiSecret = ?;
configurable string accountSid = ?;

twilio:ConnectionConfig twilioConfig = {
    auth: {
        apiKey,
        apiSecret,
        accountSid
    }
};

twilio:Client twilio = check new (twilioConfig);

Step 3 - Invoke the connector operation

Invoke the sending SMS operation using the client as shown below:

Copy
public function main() returns error? {
    twilio:CreateMessageRequest messageRequest = {
        To: "+XXXXXXXXXXX", // Phone number that you want to send the message to
        From: "+XXXXXXXXXXX", // Twilio phone number
        Body: "Hello from Ballerina"
    };

    twilio:Message response = check twilio->createMessage(messageRequest);

    // Print the status of the message from the response
    io:println("Message Status: ", response?.status);
}

Step 4: Run the Ballerina application

Execute the command below to execute the Ballerina application:

Copy
bal run

Examples

The Twilio connector comes equipped with examples that demonstrate its usage across various scenarios. These examples are conveniently organized into three distinct groups based on the functionalities they showcase. For a more hands-on experience and a deeper understanding of these capabilities, we encourage you to experiment with the provided examples in your development environment.

  1. Account management
  2. Call management
  3. Message management