Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 414 Bytes

File metadata and controls

22 lines (17 loc) · 414 Bytes
import { Flexprice } from "@flexprice/sdk";

const flexprice = new Flexprice({
  apiKeyAuth: "<YOUR_API_KEY_HERE>",
});

async function run() {
  const result = await flexprice.addons.createAddon({
    lookupKey: "<value>",
    name: "<value>",
    type: "multiple_instance",
  });

  console.log(result);
}

run();