Module powertoolsdeveloper.datetime

ballerinax/powertoolsdeveloper.datetime Ballerina library

1.5.1

Overview

This is a generated connector for Apptigent PowerTools Developer API v2021.1.01 OpenAPI specification. Apptigent PowerTools Developer Edition is a powerful suite of API endpoints for custom applications running on any stack. Manipulate text, modify collections, format dates and times, convert currency, perform advanced mathematical calculations, shorten URL's, encode strings, convert text to speech, translate content into multiple languages, process images, and more. PowerTools is the ultimate developer toolkit. This connector provides the capability for date and time operations.

Prerequisites

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

  • Create Apptigent account
  • Obtain tokens
    1. Log into Apptigent Developer Portal by visiting https://portal.apptigent.com
    2. Create an app and obtain the Client ID which will be used as the API Key by following the guidelines described here.

Quickstart

To use the Apptigent PowerTools Developer connector in your Ballerina application, update the .bal file as follows:

Step 1: Import connector

Import the ballerinax/powertoolsdeveloper.datetime module into the Ballerina project.

Copy
import ballerinax/powertoolsdeveloper.datetime as pd;

Step 2: Create a new connector instance

Create a datetime:ApiKeysConfig with the Client ID obtained, and initialize the connector with it.

Copy
pd:ApiKeysConfig config = {
    xIbmClientId: "<CLIENT_ID>"
}
pd:Client baseClient = check new Client(config);

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 calculate the difference between two dates using the connector by providing the InputDateTimeDifference record with date/time values to compare.

    Calculate the difference between two dates

    Copy
    public function main() {
        pd:InputDateTimeDifference inputDateTimeDifference = {
            dateTime1: "1/1/2010 12:37:19",
            dateTime2: "3/15/2011 14:27:49"
        };
        pd:OutputDateDifference|error response = baseClient->dateTimeDifference(inputDateTimeDifference);
        if (response is pd:OutputDateDifference) {
            log:printInfo(response.toString());
        } else {
            log:printError(response.message());
        }
    }
  2. Use bal run command to compile and run the Ballerina program.

Import

import ballerinax/powertoolsdeveloper.datetime;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: 0

Current verison: 0


Weekly downloads


Source repository


Keywords

Website & App Building/App Builders

Cost/Freemium


Contributors

Other versions

See more...