organizze-sdk
v1.0.8
Published
OpenAPI client for Organizze API
Downloads
4
Maintainers
Readme
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.