Install the SDK

npm add inboxy

Integrate with your app

import { Inboxy } from "inboxy";

// Initialize
const inboxy = new Inboxy({
  apiKey: "your-api-key",
});

inboxy.accounts.create({
  accessToken: "123",
  refreshToken: "123",
  provider: "google",
  webhookUrl: "https://your.website.com/webhook",
});