Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 414 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 414 Bytes

Sevdesk API Client

Client for the Sevdesk API written in TypeScript.

Usage

import SevdeskApiClient from '@wertarbyte/sevdesk-api-client';

const client = new SevdeskApiClient({
  token: '', // insert API token here
});

// start using the api, e.g. get the bookkeeping system version
console.log(await client.getBookkeepingSystemVersion());