Wibiz Dashboard Integration Guide
Complete step-by-step instructions to connect BizConnect360 / Scale360 with the Wibiz Dashboard as the single source of truth. Covers API key setup, custom fields, pipeline configuration, Make.com automation, referral links, agent sites, and the full commission grid.
BizConnect360 operates as a unified CRM layer that sits on top of the Wibiz Dashboard (the CRM platform your team uses). The BC360 system handles rep management, referral tracking, and commission calculations, while the Wibiz Dashboard manages contacts, automations, appointment booking, and client communications.
In the BC360 Management UI, go to Settings → Secrets. Update the following two secrets:
GHL_PRIVATE_API_KEYREQUIREDYour Private Integration API key from the Wibiz Dashboard → Settings → Integrations → Private Integrations
MAKE_WEBHOOK_URLRECOMMENDEDYour Make.com scenario webhook URL for Scale360 pipeline automation
Location ID (pre-configured in server): 4NIo95IzKUVayysfr0PX
contacts.write, opportunities.write, contacts.readonly, opportunities.readonly. Copy the generated key.GHL_PRIVATE_API_KEY and paste your key. Save. The server will automatically use it for all Wibiz Dashboard API calls.4NIo95IzKUVayysfr0PX.Custom fields are critical for tracking rep attribution and vertical assignment. Create these fields in the Wibiz Dashboard under Settings → Custom Fields → Contacts.
| Field Name | Field Key | Type | Purpose |
|---|---|---|---|
| Rep Code | rep_code | Text | Stores the referring rep's ID (e.g. S360-003) |
| BC360 Lead ID | bc360_lead_id | Text | Links GHL contact to BC360 database record |
| BC360 Stage | bc360_stage | Dropdown | Current pipeline stage in BC360 |
| Vertical | bc360_vertical | Dropdown | Which BC360 vertical (Fundable360, etc.) |
| Plan | bc360_plan | Dropdown | Lite / Standard / Pro |
| Setup Fee | bc360_setup_fee | Number | One-time setup fee amount |
| Monthly Fee | bc360_monthly_fee | Number | Recurring monthly fee amount |
| Referral Source | referral_source | Text | How the lead found BC360 |
rep_code field, note its Field ID from the URL (e.g., aVt0KNcl5azG2Rdx7oFC). You'll need this when configuring webhook payloads.lead_captured audit_submitted follow_up_active payment_received onboarding_submitted active_client lost_cold
Fundable360 Share360 Scale360 Legacy360 Build360 Protect360
Create a dedicated pipeline in the Wibiz Dashboard that mirrors the BC360 7-stage pipeline. Go to CRM → Pipelines → Add Pipeline.
Webhooks are the backbone of the BC360 ↔ Wibiz Dashboard integration. They allow real-time data sync in both directions.
https://bizconnect-6mbfxzcq.manus.space/api/ghl/webhookContactCreate— when a new contact is addedContactUpdate— when contact data changesOpportunityStageUpdate— when pipeline stage changesAppointmentCreate— when appointment is bookedFormSubmission— when a form is submitted
rep_code custom field. GHL sends custom fields in the customFields array. The BC360 webhook handler automatically extracts this.{
"type": "ContactCreate",
"contact": {
"id": "ghl_contact_id_here",
"firstName": "John",
"lastName": "Smith",
"email": "[email protected]",
"phone": "555-0100",
"companyName": "Acme Corp",
"tags": ["rep:S360-003", "vertical:Fundable360"],
"customFields": [
{ "key": "rep_code", "value": "S360-003" },
{ "key": "bc360_vertical", "value": "Fundable360" }
]
}
}Every rep gets a unique referral link in the format https://scale360.wibiz.ai/?ref=S360-XXX. This link is auto-generated when you register a rep in the BC360 Admin Dashboard.
- Generates the next sequential rep code (S360-001, S360-002, etc.)
- Creates the referral link:
https://scale360.wibiz.ai/?ref=S360-XXX - Stores the rep in the database with their profile
?ref=S360-XXX parameter is captured by the BC360 landing page. When the prospect submits the form, their lead record is automatically tagged with the rep's code.https://your-ghl-funnel.com/apply?rep_code=S360-003 # OR using GHL's custom domain: https://scale360.wibiz.ai/apply?ref=S360-003
BC360 will trigger it automatically on every lead creation and stage change. Add your Make.com webhook URL to the MAKE_WEBHOOK_URL secret in BC360 Settings.
https://hook.make.com/...). Add it to BC360 Secrets as MAKE_WEBHOOK_URL.{
"event": "lead_created",
"timestamp": "2026-03-10T08:00:00Z",
"lead": {
"id": 42,
"firstName": "John",
"lastName": "Smith",
"email": "[email protected]",
"phone": "555-0100",
"businessName": "Acme Corp",
"vertical": "Scale360",
"plan": "standard",
"repCode": "S360-001",
"agentLevel": "1st Level",
"referralLink": "https://scale360.wibiz.ai/?ref=S360-001",
"stage": "lead_captured",
"source": "referral_link"
}
}{
"event": "stage_changed",
"lead": {
"id": 42,
"repCode": "S360-001",
"vertical": "Scale360",
"fromStage": "audit_submitted",
"toStage": "payment_received",
"changedBy": "admin"
},
"commission": {
"triggered": true,
"amount": 750,
"type": "enrollment",
"agentLevel": "1st Level"
}
}Build these workflows in Wibiz Dashboard → Automations → Workflows. Each workflow handles a specific stage in the BC360 pipeline.
Each rep gets their own version of the BC360 landing page, pre-tagged with their referral code. In the Wibiz Dashboard, this is done using funnel cloning and URL parameters.
rep_code.rep_code and configure it to auto-fill from the URL parameter ?ref:// In Wibiz Dashboard funnel custom code block, add this script:
window.addEventListener('DOMContentLoaded', function() {
const urlParams = new URLSearchParams(window.location.search);
const refCode = urlParams.get('ref');
if (refCode) {
// Find the hidden rep_code field and set its value
const repField = document.querySelector('input[name="rep_code"]');
if (repField) repField.value = refCode;
// Also store in sessionStorage for multi-step funnels
sessionStorage.setItem('bc360_ref', refCode);
}
});https://scale360.wibiz.ai/[rep-name] # OR use the master funnel with URL param: https://scale360.wibiz.ai/apply?ref=S360-003
Full commission structure from the BizConnect360 Commission Grid document. All percentages apply to enrollment fee or monthly subscription.
| Level | Enrollment | Recurring |
|---|---|---|
| MGA / Channel Partner | 40% of enrollment fee | 40% monthly — no yr-2 decline |
| 1st Level | 30% of enrollment fee | 30% monthly — no yr-2 decline |
| 2nd Level | 20% of enrollment fee | 20% monthly — no yr-2 decline |
| Level | Enrollment | Recurring |
|---|---|---|
| MGA / Channel Partner | 40% of enrollment fee | 40% of monthly subscription |
| 1st Level | 30% of enrollment fee | 30% of monthly subscription |
| 2nd Level | 20% of enrollment fee | 20% of monthly subscription |
| Level | Enrollment | Recurring |
|---|---|---|
| MGA / Channel Partner | 40% of enrollment fee | 40% monthly — no yr-2 decline |
| 1st Level | 30% of enrollment fee | 30% monthly — no yr-2 decline |
| 2nd Level | 20% of enrollment fee | 20% monthly — no yr-2 decline |
| Level | Enrollment | Recurring |
|---|---|---|
| MGA / Channel Partner | Paid by banking partner | Paid by banking partner |
| 1st Level | Paid by banking partner | Paid by banking partner |
| 2nd Level | Paid by banking partner | Paid by banking partner |
| Level | Enrollment | Recurring |
|---|---|---|
| MGA / Channel Partner | 40% of enrollment fee | 40% monthly — no yr-2 decline |
| 1st Level | 30% of enrollment fee | 30% monthly — no yr-2 decline |
| 2nd Level | 20% of enrollment fee | 20% monthly — no yr-2 decline |
| Level | Enrollment | Recurring |
|---|---|---|
| MGA / Channel Partner | 40% of enrollment fee | 40% monthly — no yr-2 decline |
| 1st Level | 30% of enrollment fee | 30% monthly — no yr-2 decline |
| 2nd Level | 20% of enrollment fee | 20% monthly — no yr-2 decline |
Before going live, complete this validation checklist to ensure all systems are connected correctly.
/admin/rep/join?ref=S360-XXX/api/ghl/webhookBizConnect360 Wibiz Dashboard Integration Guide · Scale360 · Wibiz · v2.0
For support, contact your BC360 technical team