powertoolsdeveloper.finance
Module powertoolsdeveloper.finance
Definitions
![](https://bcentral-packageicons.azureedge.net/images/ballerinax_powertoolsdeveloper.finance_1.4.0.png)
ballerinax/powertoolsdeveloper.finance Ballerina library
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 financial calculations and conversions.
Prerequisites
Before using this connector in your Ballerina application, complete the following:
- Create Apptigent account
- Obtain tokens
- Log into Apptigent Developer Portal by visiting https://portal.apptigent.com
- Create an app and obtain the
Client ID
which will be used as theAPI 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.finance
module into the Ballerina project.
import ballerinax/powertoolsdeveloper.finance as pf;
Step 2: Create a new connector instance
Create a finance:ApiKeysConfig
with the Client ID obtained, and initialize the connector with it.
pf:ApiKeysConfig config = { xIbmClientId: "<CLIENT_ID>" } pf:Client baseClient = check new Client(config);
Step 3: Invoke connector operation
-
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 monetary value in a different currency using the connector by providing the
InputCurrencyConversion
record with amount to convert, source and target.Calculate monetary value in a different currency
public function main() { pf:InputCurrencyConversion inputCurrencyConversion = { input: 100.25, 'source: "USD", target: "CAD" }; pf:OutputNumber|error response = baseClient->convertCurrency(inputCurrencyConversion); if (response is pf:OutputNumber) { log:printInfo(response.toString()); } else { log:printError(response.message()); } }
-
Use
bal run
command to compile and run the Ballerina program.
Clients![](/images/permalink.svg)
powertoolsdeveloper.finance: Client![](/images/permalink.svg)
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 financial calculations and conversions.
Constructor![](/images/permalink.svg)
Gets invoked to initialize the connector
.
The connector initialization requires setting the API credentials.
Create an Apptigent account and obtain tokens following this guide.
init (ApiKeysConfig apiKeyConfig, ConnectionConfig config, string serviceUrl)
- apiKeyConfig ApiKeysConfig - API keys for authorization
- config ConnectionConfig {} - The configurations to be used when initializing the
connector
- serviceUrl string "https://connect.apptigent.com/api/utilities" - URL of the target service
convertCurrency![](/images/permalink.svg)
function convertCurrency(InputCurrencyConversion payload) returns OutputNumber|error
Currency - Convert currency
Parameters
- payload InputCurrencyConversion - Currency conversion parameters
Return Type
- OutputNumber|error - OK
formatCurrency![](/images/permalink.svg)
function formatCurrency(InputCurrencyFormat payload) returns OutputString|error
Currency - Format currency
Parameters
- payload InputCurrencyFormat - Currency format parameters
Return Type
- OutputString|error - OK
stockPrices![](/images/permalink.svg)
function stockPrices(InputStockPrices payload) returns OutputStockPrice|error
Finance - Stock prices
Parameters
- payload InputStockPrices - Input stock prices parameters
Return Type
- OutputStockPrice|error - OK
marketIndex![](/images/permalink.svg)
function marketIndex(InputMarketIndex payload) returns OutputMarketIndex|error
Finance - Market index
Parameters
- payload InputMarketIndex - Input market index parameters
Return Type
- OutputMarketIndex|error - OK
Records![](/images/permalink.svg)
powertoolsdeveloper.finance: ApiKeysConfig![](/images/permalink.svg)
Provides API key configurations needed when communicating with a remote HTTP endpoint.
Fields
- xIbmClientId string - Represents API key
X-IBM-Client-Id
powertoolsdeveloper.finance: ClientHttp1Settings![](/images/permalink.svg)
Provides settings related to HTTP/1.x protocol.
Fields
- keepAlive KeepAlive(default http:KEEPALIVE_AUTO) - Specifies whether to reuse a connection for multiple requests
- chunking Chunking(default http:CHUNKING_AUTO) - The chunking behaviour of the request
- proxy ProxyConfig? - Proxy server related options
powertoolsdeveloper.finance: ConnectionConfig![](/images/permalink.svg)
Provides a set of configurations for controlling the behaviours when communicating with a remote HTTP endpoint.
Fields
- httpVersion HttpVersion(default http:HTTP_2_0) - The HTTP version understood by the client
- http1Settings ClientHttp1Settings? - Configurations related to HTTP/1.x protocol
- http2Settings ClientHttp2Settings? - Configurations related to HTTP/2 protocol
- timeout decimal(default 60) - The maximum time to wait (in seconds) for a response before closing the connection
- forwarded string(default "disable") - The choice of setting
forwarded
/x-forwarded
header
- poolConfig PoolConfiguration? - Configurations associated with request pooling
- cache CacheConfig? - HTTP caching related configurations
- compression Compression(default http:COMPRESSION_AUTO) - Specifies the way of handling compression (
accept-encoding
) header
- circuitBreaker CircuitBreakerConfig? - Configurations associated with the behaviour of the Circuit Breaker
- retryConfig RetryConfig? - Configurations associated with retrying
- responseLimits ResponseLimitConfigs? - Configurations associated with inbound response size limits
- secureSocket ClientSecureSocket? - SSL/TLS-related options
- proxy ProxyConfig? - Proxy server related options
- validation boolean(default true) - Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default
powertoolsdeveloper.finance: InputCalculateMinMax![](/images/permalink.svg)
Fields
- input decimal[] - Colllection of values to calculate
- 'type string - Minimum or Maximum
powertoolsdeveloper.finance: InputCalculateNumber![](/images/permalink.svg)
Fields
- input decimal - Numeric value to calculate
- decimals decimal - Round to number of decimal places
powertoolsdeveloper.finance: InputCalculateNumbers![](/images/permalink.svg)
Fields
- input decimal - Numeric value
- value decimal - Addend, subtrahend, factor, divisor or radicand
- decimals decimal - Round to number of decimal places
powertoolsdeveloper.finance: InputCalculatePower![](/images/permalink.svg)
Fields
- input decimal - Number to raise
- power decimal - Power
- decimals decimal - Round to number of decimal places
powertoolsdeveloper.finance: InputCalculateSeries![](/images/permalink.svg)
Fields
- input decimal[] - Colllection of values to calculate
- decimals decimal - Round to number of decimal places
powertoolsdeveloper.finance: InputCaseConversion![](/images/permalink.svg)
Fields
- input string - String containing the text to convert
- alphacase string - Case of conversion result
powertoolsdeveloper.finance: InputCollectionConversion![](/images/permalink.svg)
Fields
- input string[] - Collection containing strings to convert
- name string - Collection name
powertoolsdeveloper.finance: InputCollectionConversionXML![](/images/permalink.svg)
Fields
- input string[] - Collection containing strings to convert
- root string - Name of root XML node
- child string - Name of child XML node(s)
powertoolsdeveloper.finance: InputCollectionCount![](/images/permalink.svg)
Fields
- input string[] - Collection of items to count
powertoolsdeveloper.finance: InputCollectionFilter![](/images/permalink.svg)
Fields
- input string[] - Collection of strings to filter
- 'match string - Match type
- keywords string - Keywords (separate multiple values with commas)
powertoolsdeveloper.finance: InputCollectionModify![](/images/permalink.svg)
Fields
- input string[] - Collection of values or objects to modify
- item string? - Item (for multiple items, leave blank and use Items)
- items string[]? - Items (Collection, for a single item leave blank and use Item)
- index string? - Index position for operation (leave blank to specify end of collection)
powertoolsdeveloper.finance: InputCollectionReplace![](/images/permalink.svg)
Fields
- input string[] - Collection of strings
- 'match string - Match value
- replacement string - Replacement value
- ignoreCase string - Ignore case
powertoolsdeveloper.finance: InputCollectionSearch![](/images/permalink.svg)
Fields
- input string[] - Collection of strings to search
- 'match string - Text to match
- trim string? - Trim white space from comparison string
- ignorecase string? - Ignore case when performing comparison
powertoolsdeveloper.finance: InputCollectionSearchNumeric![](/images/permalink.svg)
Fields
- input decimal[] - Collection of strings to search
- 'match decimal - Number to match
- 'type string(default "Integer") - Type of number - integer or decimal
powertoolsdeveloper.finance: InputCollectionSort![](/images/permalink.svg)
Fields
- input string[] - Collection of strings to sort
- 'order string - Sort order
powertoolsdeveloper.finance: InputCollectionSplit![](/images/permalink.svg)
Fields
- input string[] - Collection of items to split
- 'match string? - String to match (explicit, case-insensitive, leave empty to use Index)
- index string? - Index location to split (leave empty to use Match value)
powertoolsdeveloper.finance: InputConvertAngle![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputConvertArea![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputConvertDistance![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputConvertDuration![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputConvertEnergy![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputConvertPower![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputConvertSpeed![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputConvertTemperature![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputConvertVolume![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputConvertWeight![](/images/permalink.svg)
Fields
- input decimal -
- 'source string -
- target string -
powertoolsdeveloper.finance: InputCsvConversionJSON![](/images/permalink.svg)
Fields
- input string - CSV string
- header boolean - Include header row
powertoolsdeveloper.finance: InputCurrencyConversion![](/images/permalink.svg)
Fields
- input decimal - Amount to convert
- 'source string -
- target string -
powertoolsdeveloper.finance: InputCurrencyFormat![](/images/permalink.svg)
Fields
- input decimal - Amount to format
- target string -
powertoolsdeveloper.finance: InputDataQuery![](/images/permalink.svg)
Fields
- input string - XML or JSON string
- query string - XPath or JSONPath query
powertoolsdeveloper.finance: InputDateTimeConversion![](/images/permalink.svg)
Fields
- input string - Source date and time
- 'source string -
- target string -
- format string? - Display format (defaults to 'yyyy-MM-dd HH:mm:ss')
powertoolsdeveloper.finance: InputDateTimeDifference![](/images/permalink.svg)
Fields
- dateTime1 string - First date/time value
- dateTime2 string - Second date/time value
powertoolsdeveloper.finance: InputDateTimeFormat![](/images/permalink.svg)
Fields
- input string - Source date and time
- culture string - Language culture
- format string - Output format
powertoolsdeveloper.finance: InputDateTimeInfo![](/images/permalink.svg)
Fields
- input string - Source date and time
- culture string - Language culture
powertoolsdeveloper.finance: InputGenerateHash![](/images/permalink.svg)
Fields
- input string - Hash source string
- algorithm string - Hash algorithm
powertoolsdeveloper.finance: InputGenerateUniqueID![](/images/permalink.svg)
Fields
- uppercase string - All uppercase alpha characters
powertoolsdeveloper.finance: InputJoinStrings![](/images/permalink.svg)
Fields
- input string[] - Collection of strings to be joined
- separator string - Separator character
- lower string - Convert strings in collection to lowercase
- trim string - Trim strings in collection
powertoolsdeveloper.finance: InputJsonConversionCSV![](/images/permalink.svg)
Fields
- input string - JSON array object
- header boolean - Include header row
- omit string? - Columns to omit (comma separated)
- 'order string? - Column order (comma separated)
powertoolsdeveloper.finance: InputJsonConversionHTML![](/images/permalink.svg)
Fields
- input string - JSON array object
- header boolean - Include header row
- alternate string? - Alternate header row markup
- attributes string? - Optional table attributes (single quoted values)
- omit string? - Columns to omit (comma separated)
- 'order string? - Column order (comma separated)
powertoolsdeveloper.finance: InputJsonConversionXML![](/images/permalink.svg)
Fields
- input string - JSON array object
- root string - Name of root node
powertoolsdeveloper.finance: InputMarketIndex![](/images/permalink.svg)
Fields
- symbol string - Market index
- date string? - Date (yyyy-MM-dd, leave empty for last trading day)
powertoolsdeveloper.finance: InputNumberRange![](/images/permalink.svg)
Fields
- 'start decimal - Start of range
- end decimal - End of range
powertoolsdeveloper.finance: InputQRCode![](/images/permalink.svg)
Fields
- input string - Text value(s) (vertical bar delimited by type)
- payload string - Payload type
powertoolsdeveloper.finance: InputRedactString![](/images/permalink.svg)
Fields
- 'source string - String containing the complete text
- value string? - Individual string to redact
- values string[]? - Collection of strings to redact
- regex string? - Regular expression pattern for matching strings
powertoolsdeveloper.finance: InputReplaceString![](/images/permalink.svg)
Fields
- 'source string - String containing the text to be replaced
- value string - Text to replace
- replacement string - Replacement text
powertoolsdeveloper.finance: InputSplitString![](/images/permalink.svg)
Fields
- input string - Text to split
- characters string - One or more characters that will be used to split the text
powertoolsdeveloper.finance: InputStockPrices![](/images/permalink.svg)
Fields
- symbols string - Stock ticker symbols (comma-separated, max 20)
- date string? - Date (yyyy-MM-dd, leave empty for latest)
- exchange string? - Stock exchange
powertoolsdeveloper.finance: InputString![](/images/permalink.svg)
Fields
- 'source string - String variable or text value
powertoolsdeveloper.finance: InputStringComparison![](/images/permalink.svg)
Fields
- input string - Original string
- compare string - Comparison string
- lower string - Convert strings to lowercase before comparison
- trim string - Trim strings before comparison
powertoolsdeveloper.finance: InputStringContains![](/images/permalink.svg)
Fields
- find string - Text to match
- input string - Text to search
- lower string - Convert strings to lowercase
powertoolsdeveloper.finance: InputStringToFile![](/images/permalink.svg)
Fields
- input string - Text string (body of file)
- extension string - File extension
- filename string - Name of file (without extension)
powertoolsdeveloper.finance: InputTextToSpeech![](/images/permalink.svg)
Fields
- text string - Text to convert (10,000 characters max)
- 'type string - Text or file type
- voice string - Voice locale (must match language of input text)
powertoolsdeveloper.finance: InputTranslateString![](/images/permalink.svg)
Fields
- input string - String containing the text to be translated
- language string - Translation language
powertoolsdeveloper.finance: InputTrimString![](/images/permalink.svg)
Fields
- 'source string - String containing the text to be trimmed
- 'type string - Type of white space to remove
powertoolsdeveloper.finance: InputVerifyHash![](/images/permalink.svg)
Fields
- input string - Original source string
- algorithm string - Hash algorithm
- hash string - Hashed result
powertoolsdeveloper.finance: InputXmlConversionJSON![](/images/permalink.svg)
Fields
- input string - XML string
powertoolsdeveloper.finance: OutputBoolean![](/images/permalink.svg)
Fields
- result boolean? - Result
powertoolsdeveloper.finance: OutputCollectionNumber![](/images/permalink.svg)
Fields
- status boolean? - Success
- item decimal? - First Value
- items decimal[]? - All Values
powertoolsdeveloper.finance: OutputCollectionResult![](/images/permalink.svg)
Fields
- result string[]? - Modified collection result
powertoolsdeveloper.finance: OutputCollectionString![](/images/permalink.svg)
Fields
- status boolean? - Success
- item string? - First Value
- items string[]? - All Values
powertoolsdeveloper.finance: OutputDateDifference![](/images/permalink.svg)
Fields
- years decimal? - Years
- months decimal? - Months
- days decimal? - Days
- hours decimal? - Hours
- minutes decimal? - Minutes
- milliseconds decimal? - Milliseconds
- totalYears decimal? - Total Years
- totalMonths decimal? - Total Months
- totalDays decimal? - Total Days
- totalHours decimal? - Total Hours
- totalMinutes decimal? - Total Minutes
- totalSeconds decimal? - Total Seconds
- totalMilliseconds decimal? - Total Milliseconds
- ticks decimal? - Ticks
powertoolsdeveloper.finance: OutputDateInfo![](/images/permalink.svg)
Fields
- DayOfYear decimal? - DayOfYear
- DayOfWeek decimal? - DayOfWeek
- WeekOfYear decimal? - WeekOfYear
- SecondsInDay decimal? - SecondsInDay
- MinutesInDay decimal? - MinutesInDay
- Ticks decimal? - Ticks
powertoolsdeveloper.finance: OutputFileByte![](/images/permalink.svg)
Fields
- result string? - Result
powertoolsdeveloper.finance: OutputMarketIndex![](/images/permalink.svg)
Fields
- date string? - Date
- symbol string? - Index symbol
- exchange string? - Market exchange
- open decimal? - Open value
- high decimal? - High value
- low decimal? - Low value
- close decimal? - Close value
- volume decimal? - Trading volume
- adj_open decimal? - Adjusted open value
- adj_high decimal? - Adjusted high value
- adj_low decimal? - Adjusted low value
- adj_close decimal? - Adjusted close value
- adj_volume decimal? - Adjusted trading volume
powertoolsdeveloper.finance: OutputMultiCollection![](/images/permalink.svg)
Fields
- result1 string[]? - First collection result
- result2 string[]? - Second collection result
powertoolsdeveloper.finance: OutputNumber![](/images/permalink.svg)
Fields
- result decimal? - Result
powertoolsdeveloper.finance: OutputStockPrice![](/images/permalink.svg)
Fields
- result OutputstockpriceResult[]? - Stock price information
powertoolsdeveloper.finance: OutputstockpriceResult![](/images/permalink.svg)
Fields
- date string? - Date
- symbol string? - Ticker symbol
- exchange string? - Stock exchange
- open decimal? - Open
- high decimal? - High
- low decimal? - Low
- close decimal? - Close
- volume decimal? - Volume
powertoolsdeveloper.finance: OutputString![](/images/permalink.svg)
Fields
- result string? - Result
powertoolsdeveloper.finance: OutputStringArray![](/images/permalink.svg)
Fields
- data string[]? - data
powertoolsdeveloper.finance: ProxyConfig![](/images/permalink.svg)
Proxy server configurations to be used with the HTTP client endpoint.
Fields
- host string(default "") - Host name of the proxy server
- port int(default 0) - Proxy server port
- userName string(default "") - Proxy server username
- password string(default "") - Proxy server password
Import
import ballerinax/powertoolsdeveloper.finance;
Metadata
Released date: about 2 years ago
Version: 1.4.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.2.1
GraalVM compatible: Yes
Pull count
Total: 1
Current verison: 0
Weekly downloads
Keywords
Website & App Building/App Builders
Cost/Freemium
Contributors
Dependencies