Onboarding & Developer Resources

Everything you need to install Rendeal AI Deal Creator and integrate cognitive webhooks into your sales tools.

🚀 Add-on Onboarding Guide

1

Install via Google Workspace Marketplace

Search for "Rendeal AI Deal Creator" inside the public Google Workspace Marketplace or click the installation link. Click Install (or Domain Install if you are provisioned by your corporate IT manager) and approve OAuth scopes.

2

Securely Connect Your CRM

Open Gmail and locate the Rendeal icon in your sidebar. Click the Connect CRM button, select HubSpot, Zoho, or Zendesk, and authenticate your account. You will receive a success alignment screen!

3

Review & Sync in One Click

Open any client email thread. Rendeal AI will automatically detect stakeholders, resolve company details, and map your custom fields. Click Sync to CRM to update your pipeline in 5 seconds!

🛠️ Internal Staging Developer Mode Only

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: `AKfycbwRendealSecureDeploymentHashExampleID` and click Install.

🔗 Validated Developer Webhook Integration

Our Next.js portal emits high-fidelity webhook notifications whenever a deal is successfully synchronized. 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;
}