organizze-sdk
TypeScript icon, indicating that this package has built-in type declarations

1.0.8 • Public • Published

Organizze SDK

An unofficial OpenAPI client for the Organizze API


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.

Package Sidebar

Install

npm i organizze-sdk

Weekly Downloads

7

Version

1.0.8

License

Apache-2.0

Unpacked Size

477 kB

Total Files

81

Last publish

Collaborators

  • sergiottf