ballerinax/vonage.sms Ballerina library

1.5.1

Overview

This is a generated connector for Vonage SMS API v1.0.10 OpenAPI specification. With the SMS API you can send SMS from your account and lookup messages both messages that you've sent as well as messages sent to your virtual numbers. Numbers are specified in E.164 format. More SMS API documentation is at https://developer.nexmo.com/messaging/sms/overview.

Prerequisites

Before using this connector in your Ballerina application, complete the following:

Quickstart

To use the Vonage SMS connector in your Ballerina application, update the .bal file as follows:

Step 1: Import connector

First, import the ballerinax/vonage.sms module into the Ballerina project.

Copy
import ballerinax/vonage.sms as vs;

Step 2: Create a new connector instance

Initialize the connector.

Copy
vs:Client baseClient = check new Client();

Step 3: Invoke connector operation

  1. Now you can use the operations available within the connector. Note that they are in the form of remote operations.

    Following is an example on how to send an SMS using the connector. You can now provide the API key and API secret obtained from the Vonage API Dashboard in the 'NewMessage' record with other message details.

    Send an SMS

    Copy
    public function main() {
        NewMessage message = {
            api_key: "7b....4",
            api_secret: "Gd......4",
            'from: "Vonage APIs",
            to: "947....7",
            text: "Hello"
        };
        InlineResponse200|error response = baseClient->sendAnSms(message);
        if (response is InlineResponse200) {
            log:printInfo(response.toString());
        } else {
            log:printError(response.toString());
        }
    }
  2. Use bal run command to compile and run the Ballerina program.

Import

import ballerinax/vonage.sms;Copy

Metadata

Released date: 12 months ago

Version: 1.5.1

License: Apache-2.0


Compatibility

Platform: any

Ballerina version: 2201.4.1

GraalVM compatible: Yes


Pull count

Total: 202

Current verison: 114


Weekly downloads


Source repository


Keywords

Communication/Call & SMS

Cost/Paid


Contributors

Other versions

See more...