Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

moneybird-axios

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

moneybird-axios

OpenAPI client for Moneybird using Axios

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

moneybird-axios

This package provides a TypeScript/JavaScript client for the Moneybird API and utilizes axios.

It can be used in both TypeScript and JavaScript. In TypeScript, you can benefit from things like type hints.

Installation

Navigate to the folder of your consuming project and run the following command to install the package:

npm install moneybird-axios --save

Usage

import { AdministrationsApi, Configuration } from 'moneybird-axios';

const administrationsApi = new AdministrationsApi(<Configuration>{
    accessToken: 'YOUR_TOKEN'
});

administrationsApi.getAdministrations().then(response => {
    const administrations = response.data;
    administrations.forEach(administration => {
        console.log(`Found administration: ${administration.name}`);
    });
}).catch(e => {
    console.error(`Error: ${e}`);
});

Building

To build and compile the TypeScript sources to JavaScript, use:

npm install
npm run build

Keywords

FAQs

Package last updated on 24 May 2023

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc