Socket
Socket
Sign inDemoInstall

eaccounting

Package Overview
Dependencies
60
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    eaccounting

A simple SDK for Visma eAccouting API


Version published
Maintainers
1
Created

Readme

Source

eAccounting-node

A simple client module for accessing Visma eAccounting's API. It is still early stages in development, please refer to Current Development Stage for the current development stage.

Authentication

eAccounting-node tries to keep a small fotprint, so simple-oauth2 have been used for authentication. You can access the authentication variable by eaccounting.auth(). API documentation for simple-oauth2 is available here.

Installation

npm install eaccounting

Usage

const authConfig = {
    {  
       "client":{  
          id: "ayr",
          secret: "a string"
       },
       "token":{  
            access_token: "a long string",
            token_type: "Bearer",
            expires_in: 3600,
            refresh_token: "a shorter string",
            expires_at: "2017-06-01T08:32:46.394Z"
       }
    }
};

const eaccounting = require('eaccounting').create(authConfig);

Refresh your token

We have built in a renewedTokenFunction, what that does is use the expired function from simple-oauth2 to refresh it automaticly and return you a Promise so you can store it.

var authConfig = require('./auth.json');
const jsonfile = require('jsonfile');

authConfig.renewedTokenFunction = (token) => {
	jsonfile.writeFile('./auth.json', {
		client: authConfig.client,
		token: token.token
	}, function (err){
		console.error(err);
	});
};
var eaccounting = require('eaccounting').create(authConfig)

Current Development Stage

Currently the module has the following endpoints added:

  • Articles
  • CustomerInvoiceDrafts
  • Customers

API Documentation

The updated documentation for Visma eAccounting API is available publicly here. eaccounting-node uses the same name as the endpoint, but with camelCasing.

Function names

All of the functions have the same function names, as of now.

Get all

var customers = eaccounting.customers.getAll()

Get all (alias)

var customers = eaccounting.customers.get()

Get one

var customer = eaccounting.customers.get(1337)

Update

var customer = eaccounting.customers.update(1337)

Add

var customer = eaccounting.customers.add({
    name: "Github Inc."
})

Delete

var customer = eaccounting.customers.remove(1337)

Contribute!

It is super easy to add the other endpoints, because of the simple API of the module. So please submit pull request if you have implemented more.

Todo

  • feels like everything.

FAQs

Last updated on 01 Jun 2017

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