How to use the chargebee.invoice function in chargebee

To help you get started, we’ve selected a few chargebee examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github staart / api / src / helpers / stripe.ts View on Github external
new Promise((resolve, reject) => {
    chargebee.invoice
      .list({
        "customer_id[is]": id
      })
      .request((error: any, result: any) => {
        if (error) return reject(error);
        resolve(result as any);
      });
  });

chargebee

A library for integrating with ChargeBee.

MIT
Latest version published 2 days ago

Package Health Score

71 / 100
Full package analysis