1.0.8 • Published 2 months ago

organizze-sdk v1.0.8

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 months 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

2 months ago

1.0.7

2 months ago

1.0.6

2 months ago

1.0.5

2 months ago

1.0.4

2 months ago

1.0.3

3 months ago

1.0.2

3 months ago

1.0.1

4 months ago

1.0.0

4 months ago