How to use Zapier for IV Hydration Nurse

Clients want to book last-minute hangover or immunity drips, but you lose them because you can't manually verify your driving radius fast enough.

πŸ’‘ Why This Actually Matters

In the mobile IV therapy business, speed is everything. When someone wakes up feeling terrible and wants a drip, they are going to book the first nurse who responds. If you have to pull over, check a map, and calculate your driving distance before replying, you've already lost the sale.

Zapier instantly triages your incoming leads. The second a request hits, it checks their zip code against your approved service area matrix. If they are in your zone, it instantly texts them a calendar link to lock in the appointment. If they are too far, it politely declines. You secure the high-intent bookings within seconds without lifting a finger.

The Blueprint

  • πŸ“ Trigger: New booking inquiry via Typeform or Squarespace.
  • πŸ—ΊοΈ Action: Check the client's zip code against your approved Google Sheets list of service areas.
  • πŸ“± Action: If approved, auto-text a booking link. If out of bounds, auto-text a referral to a partner clinic.

The Instant Triage Responder

Architecture Map

This is the high-level structural flow of your automation. Build this sequence in Zapier:

Typeform (New Entry) -> Google Sheets (Lookup Zip Code) -> Paths by Zapier -> Twilio (Send SMS based on Path)

πŸ› οΈ Actionable Toolkit: Setup Guide

Follow these exact steps to implement this blueprint in Zapier:

1

Set up Zapier with Typeform (or your form builder) as the trigger.

2

Instead of Google Sheets, add a 'Code by Zapier' step (JavaScript) and paste the highly reliable array validation script below to instantly check their zip code.

Power Snippet
const approvedZips = ['90210', '90211', '90212', '90048', '90069']; const clientZip = inputData.zip_code.trim(); const isApproved = approvedZips.includes(clientZip); output = { approved: isApproved, message: isApproved ? 'Link sent!' : 'Out of service area.' };
3

Use 'Paths by Zapier' to split the automation based on whether the zip code was found.

4

Map Twilio actions in each path to send either the booking link or the polite rejection.