Module freshbooks

ballerinax/freshbooks Ballerina library

1.5.1

Overview

This is a generated connector for FreshBooks API v1 OpenAPI specification.

FreshBooks lets you create professional looking invoices in seconds, automatically record expenses with ease and track your time quickly and efficiently so you can focus on what matters most - serving the needs of your clients. The FreshBooks API is an interface for accessing your FreshBooks data using JSON.

Prerequisites

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

Quickstart

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

Step 1: Import connector

First, import the ballerinax/freshbooks module into the Ballerina project.

Copy
import ballerinax/freshbooks;

Step 2: Create a new connector instance

Create a freshbooks:ClientConfig with the <ACCESS_TOKEN> obtained, and initialize the connector with it.

Copy
freshbooks:ClientConfig clientConfig = {
    auth : {
        token: `<ACCESS_TOKEN>`
    }
};

freshbooks:Client baseClient = check new Client(clientConfig);

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 to list clients using the connector.

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

Import

import ballerinax/freshbooks;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: 2

Current verison: 1


Weekly downloads


Source repository


Keywords

Finance/Accounting

Cost/Paid


Contributors

Other versions