Integration
Automate with HubSpot
HubSpot is the hub of your sales and marketing machine. NVS connects it to your entire stack so leads, deals, and contacts flow through automations without any manual effort.
Use Cases
Real form submissions run through AI scoring. Qualified leads go straight to sales with a Slack alert; lower-fit leads are still created in HubSpot but routed to a nurture track.
Trigger
Form Submitted
typeform.trigger
Prospect submits a lead form. NVS receives data instantly via webhook.
Extract Fields
nvs.set
Name, email, company, budget, and use-case are mapped from raw form data.
Score Lead
code.javascript
A weighted score (0-100) is calculated from budget, company size, and fit signals.
IF
Score >= 70?
nvs.condition
High-scoring leads get direct sales attention; lower scores enter a nurture sequence.
YES
Create Contact (SQL)
hubspot.crm
Contact created with lifecycle stage set to Sales Qualified Lead.
Output
Alert #sales
slack.message
Rep gets an instant Slack ping with score, company, and budget.
NO
Output
Create Contact (Nurture)
hubspot.crm
Contact created with lifecycle stage set to Lead for drip campaigns.
Every new company in HubSpot gets its website automatically verified. Bad domains are flagged before your team wastes time reaching out.
Trigger
New Company
hubspot.trigger
A new company record is created in HubSpot, firing the validation check.
Fetch Website
http.request
An HTTP GET is made to the company's website URL to check availability.
IF
Status 200?
nvs.condition
Checks whether the domain resolves and returns a live response.
YES
Output
Mark Verified
hubspot.crm
Company property updated: domain_verified=true, checked_at=now.
NO
Mark Invalid
hubspot.crm
Company property updated: domain_verified=false.
Output
Alert Team
slack.message
Sales ops notified in Slack: 'Bad domain detected: {{company}}'.
Incoming HubSpot support tickets are classified by GPT-4o and routed: billing issues to the finance team, technical bugs straight to Jira, general feedback logged.
Trigger
New Ticket
hubspot.trigger
A support ticket is created in HubSpot, triggering the triage pipeline.
Classify Ticket
openai.gpt-4o
GPT-4o reads the ticket subject and body, returning a category label.
Switch
Route by Category
nvs.switch
Routes to billing, technical, or feedback path based on GPT classification.
billing
Output
Assign Billing Team
hubspot.crm
Ticket owner set to billing queue; customer notified automatically.
technical
Create Jira Issue
jira.issue
Bug ticket created in Jira with ticket details and customer context.
Output
Notify #dev
slack.message
Engineering channel alerted with Jira link.
feedback
Output
Log Note
hubspot.crm
Feedback logged as a note on the contact record for product review.