Socket
Socket
Sign inDemoInstall

organizze-sdk

Package Overview
Dependencies
5
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    organizze-sdk

OpenAPI client for Organizze API


Version published
Weekly downloads
5
decreased by-72.22%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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.

Keywords

FAQs

Last updated on 20 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc