Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.inboxy.dev/llms.txt

Use this file to discover all available pages before exploring further.

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",
});