1.0.8 • Published 1 year ago

organizze-sdk v1.0.8

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Organizze SDK

Organizze SDK is an unofficial OpenAPI client for Organizze API generated using OpenAPI Generator. Organizze is a personal finance application that helps individuals manage their financial life, the SDK was generated based on the information provided in the Organizze API documentation.

Installation

npm install organizze-sdk

Usage

First set up the Authentication, then proceed to make API requests.

import { AuthMethodsConfiguration, Configuration, DefaultApi, createConfiguration } from "organizze-sdk"

// Auth Configuration
const authConfig: AuthMethodsConfiguration = {
    "basicAuth": {
        "username": process.env.ORGANIZZE_USERNAME,
        "password": process.env.ORGANIZZE_PASSWORD
    },
    "userAgent": process.env.ORGANIZZE_USER_AGENT
}
    
const config: Configuration = createConfiguration({authMethods: authConfig})

// Initialize API Client
const api = new DefaultApi(config);

// Make any request you want
const resp = await api.getAccounts();
console.log(resp);

Contributing

Any improvements and fixes are welcome! Submit a Pull request if you want to collaborate with this project.

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago