ballerinax/interzoid.statedata Ballerina library

1.5.1

Overview

This is a generated connector for Interzoid State Data API v1.0.0 OpenAPI specification.

This API provides the two-letter state abbreviation (or the province abbreviation for Canada) for state names, including many variations of a given state name.

Prerequisites

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

Quickstart

To use the Interzoid state data connector in your Ballerina application, update the .bal file as follows:

Step 1: Import connector

Import the ballerinax/interzoid.statedata module into the Ballerina project.

Copy
import ballerinax/interzoid.statedata as statedata;

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.

    Copy
    statedata:ApiKeysConfig apiKeyConfig = {
        license:"<PRIVATE LICENSE KEY>"
    };
    
    statedata:Client myClient = check new Client(apiKeyConfig);
  • Option 2 : Configure license key in Config.toml file and configure it in ballerina file, using configurables.

    1. Set up license key in Config.toml as shown below.
    [apiKeyConfig.apiKeys]
    license:"<PRIVATE LICENSE KEY>"
    
    1. Configure the client in ballerina file as shown below.
    Copy
    configurable ApiKeysConfig & readonly apiKeyConfig = ?;
    
    statedata:Client myClient = check new Client(apiKeyConfig);

Step 3: Invoke connector operation

  1. You can get get two-letter state abbreviation for a particular state.
    Copy
    statedata:StateData stateData = myClient->getstateabbreviation("Ohio");
  2. Use bal run command to compile and run the Ballerina program.

Import

import ballerinax/interzoid.statedata;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

IT Operations/Cloud Services

Cost/Freemium


Contributors

Other versions

See more...