Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 399 Bytes

USAGE.md

File metadata and controls

22 lines (17 loc) · 399 Bytes
import { SDK } from "@formance/formance-sdk";

const sdk = new SDK({
  security: {
    clientID: "<YOUR_CLIENT_ID_HERE>",
    clientSecret: "<YOUR_CLIENT_SECRET_HERE>",
  },
});

async function run() {
  const result = await sdk.getVersions();

  // Handle the result
  console.log(result);
}

run();