Support & Developer Resources
Everything you need to get started with Rendeal AI, connect your CRMs, and integrate custom webhooks.
Add-on Installation
Install the official Rendeal AI extension for Google Workspace (Gmail) or Microsoft Outlook to bring cognitive AI directly into your inbox.
HubSpot CRM Setup Guide
Follow our official, step-by-step documentation for securely connecting your HubSpot portal and synchronizing Contacts, Companies, and Deals.
🛠️ Internal Staging & QA Teams
If you are an internal Rendeal developer testing a deployment staging version before its formal store approval:
- Open your Gmail Settings $\rightarrow$ Add-ons tab.
- Ensure Developer Mode is turned on in your Google Apps Script workspace dashboard.
- 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:
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