ballerinax/fraudlabspro.smsverification Ballerina library

1.5.1

Overview

This is a generated connector for FraudLabsPro SMS Verification API v1.0 OpenAPI specification. Send an SMS with verification code and a custom message for authentication purpose. It helps merchants to minimize chargebacks and fraud for various kinds of payment method, such as credit card, paypal, cod and so on. Please visit https://www.fraudlabspro.com to learn more.

Prerequisites

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

Note: The connector initialization doesn't require setting the API credentials. But invoking the connector endpoints may require passing API credentials as parameters.

Quickstart

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

Step 1: Import connector

First, import the ballerinax/fraudlabspro.smsverification module into the Ballerina project.

Copy
import ballerinax/fraudlabspro.smsverification as fs;

Step 2: Create a new connector instance

Initialize the connector.

Copy
fs: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 with verification code and a custom message for authentication purpose using the connector.

    Send SMS verification

    Copy
    public function main() {
        string|error response = baseClient->send("<MOBILE_NUMBER_Eg_+123456789>","<API_KEY>","<COUNTRY_CODE>",
            "<RESPONSE_FORMAT>","mesg=Hi, your OTP is <OTP>");
        if (response is string) {
            log:printInfo(response);
        } else {
            log:printError(response.message());
        }
    }

    Following is an example on how to verify that an OTP sent by the Send SMS Verification API is valid using the connector.

    Get verification result

    Copy
    public function main() {
        string|error response = baseClient->result("<TRANSACTION_ID>","<API_KEY>","<OTP>");
        if (response is string) {
            log:printInfo(response);
        } else {
            log:printError(response.message());
        }
    }
  2. Use bal run command to compile and run the Ballerina program.

Import

import ballerinax/fraudlabspro.smsverification;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: 1

Current verison: 1


Weekly downloads


Source repository


Keywords

IT Operations/Security & Identity Tools

Cost/Freemium


Contributors

Other versions

See more...