Module interzoid.globalnumberinfo
ballerinax/interzoid.globalnumberinfo Ballerina library
Overview
This is a generated connector for Interzoid Global Phone Number Information API v1.0.0 OpenAPI specification.
This API provides geographic information for a global telephone number provided in the input parameter, including city and country information, primary languages spoken, and mobile device identification.
Prerequisites
Before using this connector in your Ballerina application, complete the following:
- Create Interzoid Account
- Obtaining tokens by following this link and obtain the license key.
Quickstart
To use the Interzoid global phone number connector in your Ballerina application, update the .bal file as follows:
Step 1: Import connector
Import the ballerinax/interzoid.globalnumberinfo module into the Ballerina project.
import ballerinax/interzoid.globalnumberinfo as globalnumberinfo;
Step 2: Create a new connector instance
You can now make the connection configuration using license key.
You can do this step in two ways. You can use any one of this.
-
Option 1 : Configure license key in ballerina file directly.
globalnumberinfo:ApiKeysConfig apiKeyConfig = { license:"<PRIVATE LICENSE KEY>" }; globalnumberinfo:Client myClient = check new Client(apiKeyConfig);
-
Option 2 : Configure license key in
Config.toml
file and configure it in ballerina file, using configurables.- Set up license key in
Config.toml
as shown below.
[apiKeyConfig.apiKeys] license:"<PRIVATE LICENSE KEY>"
- Configure the client in ballerina file as shown below.
configurable ApiKeysConfig & readonly apiKeyConfig = ?; globalnumberinfo:Client myClient = check new Client(apiKeyConfig);
- Set up license key in
Step 3: Invoke connector operation
- You can get invoke the connecter operation by providing a international number (with country code).
globalnumberinfo:GlobalNumberInfo numberInfo = myClient->getglobalnumberinfo(internationalNumberWithCountryCode);
- Use
bal run
command to compile and run the Ballerina program.