0.0.1 • Published 7 months ago

railz-client v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Railz-Client

Unofficial Railz API client with TS support.

Install

npm i railz-client

Quickstart

import { RailzClient } from 'railz-client';

const railzClient = new RailzClient(process.env['RAILZ_API_KEY'], process.env['RAILZ_API_SECRET'])

const response = await client.v2.GET('/v2/accounting/vendors', {
  params: { query: { connectionUuid: 'YOUR_CONNECTION_UUID', offset: 0, limit: 25 } },
})