Support & Developer Resources

Everything you need to get started with Rendeal AI, connect your CRMs, and integrate custom webhooks.

🛠️ Internal Staging & QA Teams

If you are an internal Rendeal developer testing a deployment staging version before its formal store approval:

  1. Open your Gmail Settings $\rightarrow$ Add-ons tab.
  2. Ensure Developer Mode is turned on in your Google Apps Script workspace dashboard.
  3. Paste the active staging Deployment ID and click Install.

🔗 Webhook Integrations

Our API emits high-fidelity webhook notifications whenever a deal is successfully synchronized from your inbox to your CRM. Use our raw HMAC verification stream to secure your endpoints:

TypeScript / Node.js Signature Check
import { createHmac } from "crypto";

function verifyWebhook(rawBody: string, signature: string, secret: string): boolean {
  const computedSignature = createHmac("sha256", secret)
    .update(rawBody)
    .digest("hex");
    
  return signature === computedSignature;
}

Need more help?

If you encounter any issues connecting your CRMs or managing your subscription, our dedicated support team is available 24/7.

Contact Support