Introduction
TypeScript SDK for the wFirma.pl API
TypeScript SDK for the wFirma.pl API, generated from the official Postman collection.
Installation
npm install wfirma-sdkQuick start
import { WFirmaClient, createWFirmaModules } from "wfirma-sdk";
const client = new WFirmaClient({
credentials: {
accessKey: process.env.WFIRMA_ACCESS_KEY!,
secretKey: process.env.WFIRMA_SECRET_KEY!,
appKey: process.env.WFIRMA_APP_KEY!,
},
companyId: process.env.WFIRMA_COMPANY_ID,
});
const api = createWFirmaModules(client);See Authentication and Usage for details.