G'day.

We make the phone system do the job your business actually does.

Aussie AI Phone is an integration shop, not a phone company. We take Uniden Voice over Cloud and wire it into the software your team already runs, build the features the platform doesn’t ship with, and put AI on the calls that are costing you people. Big, complicated rollouts, or a small team that just wants someone to sort it out properly.

call in flight live
Inbound call+61 4xx xxx xxxMatchedCustomer + open jobAI agentQualify, quote, bookWritten backCRM note + SMS sent
Partner tier
Certified Gold reseller
Platform access
SDKs, APIs, beta releases
Support chain
Australian, end to end
Commercial
SLA-backed engagements
The whole point

One platform, wired into everything else you run

A phone system that doesn’t talk to your other software is a phone system your staff have to re-type. We sit in the middle and make the call, the customer and the job the same record.

integration map events flowing
Uniden Voiceover CloudCRMHubSpot / Salesforce / ZohoJob managementsimPRO / ServiceM8 / AroFloAccountingXero / MYOBRosteringDeputy / TandaAI voice agentsAnswer, qualify, book, escalateOnline storefrontShopify / WooCommerceDashboardsPower BI / Looker StudioMessagingSMS / Teams / Slack

Swipe the map sideways

Professional services

Four things we get asked for

From a multi-site rollout with a compliance officer attached, down to a five-person office that just wants the after-hours calls to stop going missing.

01

Build the feature that doesn’t exist yet

Every platform runs out of road somewhere. When yours does, we write the bit that carries on: bespoke call flows, routing logic the admin console won’t express, customer-facing portals, internal tools, reporting that matches how you actually measure the business.

  • Custom call flows and routing rules
  • Self-service portals for your customers
  • Reporting and exports built to your definitions
02

Connect it to the software you already run

A phone call that doesn’t reach your systems is a phone call somebody has to re-type. We join the platform to your CRM, job management, accounting, rostering and storefront so the call, the customer and the job are the same record from the first ring.

  • Two-way sync, not just click-to-dial
  • Screen pop with the full customer history
  • Webhooks, open API, Zapier where it fits
03

AI on the calls that are costing you people

Not a demo. Voice agents that answer at 6pm, qualify the caller, look the account up, book the job into the real diary and hand a human the context when it matters. Trained on your data, your pricing and your words.

  • After-hours and overflow answering
  • Live transcription, summaries into the CRM
  • Clean escalation to a person, with context
04

A hand for teams without an IT department

Plenty of our work isn’t complicated, it’s just nobody there has the time or the appetite. We configure it, document it in plain English, train the team, and stay on the end of the phone afterwards.

  • Setup, porting and cutover run for you
  • Plain-English documentation your staff will read
  • A named person to ring, not a ticket queue
Things we’ve built

Real integrations, and the code behind them

Shortened for the page, but this is the shape of the work. Every one of these started as a job somebody was doing by hand.

Trades and field service

The call arrives with the job already on screen

A plumbing group with forty vans was losing ten minutes a job to re-typing. Now an inbound call matches the number against job management, pops the site history on the operator screen, and writes the call back against the job the moment it ends. No double entry, and the notes are actually there.

Webhook insimPRO APIScreen pop3 week build
handlers/inbound-match.js
// Inbound call -> find the customer, find the open job, pop the screen.
export async function onInboundCall(event) {
  const caller = normaliseAu(event.from); // +61... every time
  const customer = await simpro.customers.search({ phone: caller });

  if (!customer) return agentScreen.show({ template: "new-lead", caller });

  const job = await simpro.jobs.findOpen({ customerId: customer.id });
  await agentScreen.show({
    template: "known-customer",
    name: customer.name,
    site: job?.siteAddress ?? customer.billingAddress,
    lastVisit: customer.lastVisitedOn,
    openJob: job?.number ?? null,
    balance: customer.balanceCents / 100
  });
}
Accounts and admin

The IVR answers "where is my invoice?" without a person

Every accounts line in the country fields the same three questions. We wire the menu straight into the ledger, verify the caller against the account, and read back the balance, the due date and the last payment. The ones that need a human still get one, only now the human isn’t reading out a number.

Xero OAuthVerified lookupRead-backAudit logged
flows/accounts-ivr.json
{
  "flow": "accounts-enquiry",
  "verify": {
    "method": "account-number",
    "attempts": 2,
    "fallback": "queue:accounts"
  },
  "steps": [
    { "say": "I can read out your balance and due date. One moment." },
    { "lookup": "xero.invoices.outstanding", "by": "contactId" },
    { "say": "Your balance is {{balance}}, due {{dueDate|spoken}}." },
    { "offer": { "sms": "payment-link" } },
    { "offer": { "transfer": "queue:accounts" } }
  ],
  "log": { "store": "call-audit", "retainDays": 2555 }
}
After hours

A voice agent that books the job into the real diary

The agent is only useful if it can commit. This one checks live technician availability, holds the slot, confirms it aloud, writes the booking into the scheduling system and texts the customer. Anything outside its brief goes to the on-call mobile with a summary already written.

Tool callingLive availabilitySMS confirmHuman handover
agents/after-hours.tools.json
[
  {
    "name": "find_available_slot",
    "description": "Next free technician slot for a suburb and job type.",
    "parameters": {
      "suburb": "string",
      "jobType": "string",
      "urgency": "standard|emergency"
    }
  },
  {
    "name": "book_job",
    "description": "Commit the slot. Returns a job number to read back.",
    "parameters": {
      "slotId": "string", "caller": "string", "notes": "string"
    }
  },
  {
    "name": "escalate_to_oncall",
    "description": "Ring the on-call mobile, pass the transcript summary.",
    "parameters": { "reason": "string", "summary": "string" }
  }
]
Operations reporting

Call data in the same dashboard as everything else

Platform reporting answers platform questions. The board wants cost per booked job by branch. We stream the call events into the warehouse alongside the job and invoice data, so the phone stops being a separate report nobody opens.

Event streamWarehouse loadPower BINightly + live
warehouse/call_facts.sql
-- Cost per booked job, by branch, by week.
SELECT
    b.branch,
    date_trunc('week', c.started_at) AS wk,
    count(*) FILTER (WHERE c.direction = 'in') AS inbound_calls,
    count(DISTINCT j.job_id) AS jobs_booked,
    round(sum(c.cost_cents) / 100.0, 2) AS call_spend,
    round((sum(c.cost_cents) / 100.0)
          / nullif(count(DISTINCT j.job_id), 0), 2) AS cost_per_job
FROM calls c
JOIN branches b ON b.id = c.branch_id
LEFT JOIN jobs j ON j.source_call_id = c.id
GROUP BY b.branch, wk
ORDER BY wk DESC, call_spend DESC;

Also on the list:

  • On-call routing driven by the live roster, so the right mobile rings at 2am
  • Missed-call-to-SMS with a booking link, and a Teams alert if nobody replies in ten minutes
  • Number provisioning and porting automated across a multi-site rollout
  • Call recordings pushed to your own storage for Privacy Act and retention rules
  • Warm transfer from the storefront chat straight onto a voice call, context intact
  • Bulk device provisioning and templated handset config for a branch network
The stack

Cloud software we’ve already joined to a phone system

Every name below is something we’ve integrated at least once, in production, for a paying client. If yours is on it we’ve seen its quirks before.

CRM and sales

  • Salesforce
  • HubSpot
  • Zoho CRM
  • Pipedrive
  • Microsoft Dynamics 365
  • monday CRM
  • Copper
  • Insightly
  • Freshsales
  • Keap
  • Capsule
  • SugarCRM

Job and field service

  • simPRO
  • ServiceM8
  • AroFlo
  • Fergus
  • Tradify
  • Jobber
  • ServiceTitan
  • WorkflowMax
  • Ascora
  • FieldPulse
  • Housecall Pro
  • GeoOp

Accounting and payments

  • Xero
  • MYOB
  • QuickBooks Online
  • Sage
  • Reckon
  • Stripe
  • Ezidebit
  • Square
  • Zeller
  • GoCardless
  • Airwallex

Rostering, payroll and HR

  • Deputy
  • Tanda
  • Employment Hero
  • KeyPay
  • Humanforce
  • When I Work
  • Planday
  • ELMO
  • Workday
  • BambooHR

Service desk and ITSM

  • Zendesk
  • Freshdesk
  • Jira Service Management
  • ServiceNow
  • HaloPSA
  • Halo ITSM
  • ConnectWise
  • Autotask
  • Intercom
  • Front
  • Zammad

Collaboration and messaging

  • Microsoft Teams
  • Slack
  • Microsoft 365
  • Google Workspace
  • Zoom
  • Webex
  • WhatsApp
  • MessageMedia
  • ClickSend
  • Whispir
  • SendGrid

Booking, storefront and hospitality

  • Shopify
  • WooCommerce
  • BigCommerce
  • Magento
  • Calendly
  • Timely
  • Mindbody
  • ResDiary
  • SevenRooms
  • Now Book It
  • Bookeo

Health and allied health

  • Cliniko
  • Halaxy
  • Best Practice
  • MedicalDirector
  • Zedmed
  • Coreplus
  • Nookal
  • Power Diary
  • HealthEngine

Property and agency

  • PropertyMe
  • Console Cloud
  • VaultRE
  • Rex
  • Agentbox
  • MRI Software
  • Property Tree
  • Eagle Software

ERP, inventory and logistics

  • NetSuite
  • MYOB Acumatica
  • Cin7
  • Unleashed
  • Fishbowl
  • Odoo
  • SAP Business One
  • CartonCloud
  • MachShip
  • Shippit
  • TransVirtual

Data, BI and automation

  • Power BI
  • Looker Studio
  • Tableau
  • Snowflake
  • BigQuery
  • Databricks
  • Zapier
  • Make
  • n8n
  • Workato
  • Azure Logic Apps
  • AWS EventBridge

Education and government

  • Compass
  • Sentral
  • TechnologyOne
  • Civica
  • Objective
  • Moodle

That’s the list we’ve shipped, not the list we could. Anything with a REST API, a webhook or a database we can reach is in scope, and where a platform has no API at all we’ve still got there with scheduled exports and a bit of stubbornness.

The platform

Why we build on Uniden Voice over Cloud

We are an integrator. We could build on anything, and we have. We build on this one because it gives us the most to work with and the fewest excuses.

The platform is the most flexible and feature-rich in the Australian market, by a distance

Open API, webhooks and a real SDK, rather than a settings page and a support ticket. Forty-plus call-flow features are on every plan, so we are building on the whole platform instead of designing around a paywall.

Gold reseller means we are in the building, not in the queue

Direct engineering contact, access to the SDKs and APIs as they’re written, and sight of upcoming releases. When a client needs something the platform is about to ship, we know, and we plan around it instead of building it twice.

Australian support underneath us is what lets us sign an SLA

Our response times are only worth the paper they’re on if the platform behind them answers too. Support, engineering and the call data are all onshore and in our timezone, so an escalation at 4pm on a Friday is a phone call, not an overnight ticket to another hemisphere.

Your business isn’t left stranded

One supplier chain, end to end: us for the build, Uniden for the platform, both in Australia. No offshore vendor to wait on, and no finger-pointing between them when something needs fixing.

A road train raising dust on a red dirt road in outback Australia Wherever the work is

Our customers usually know exactly what they want the phone system to do. What they don’t have is a spare person to go and build it. Aussie AI Phone know our platform properly and they understand how a business actually runs, which is a rarer combination than it sounds. They take the job off the customer’s desk and hand it back working, so our customers keep their own people on the work they’re good at.

Joel Clarke Chief Executive Officer, Uniden Voice over Cloud
Who we do it for

Australian businesses that live on the phone

The common thread isn’t the industry. It’s that a missed or mishandled call costs real money, and somebody is currently absorbing that by hand.

Two Australian tradespeople in hi-vis talking on a job site

Trades and construction

Vans, jobs, on-call rosters

A driver beside the cab of a freight truck

Transport and logistics

Depots, drivers, dispatch

Sheep grazing in a paddock among Australian gum trees

Agriculture and regional

Properties, agents, saleyards

A busy Melbourne laneway lined with cafes

Hospitality and retail

Bookings, orders, multi-site

A worker in a Sydney Airport hi-vis vest at a night worksite

Infrastructure and services

Contracts, sites, compliance

A gravel road running through Australian scrub

Remote and rural operations

Patchy links, long distances

Pricing

Published rates, fixed-price builds

You should be able to work out roughly what this costs without booking a call first. So here it is.

Professional services

Straight time for build, integration and advisory work. Billed in the hours we use.

$150
per hour
  • Integration and custom development
  • AI voice agent design and tuning
  • Reporting, dashboards and data work
  • Itemised against the work, monthly
Talk to us about a build
Start here

Systems audit and plan

Run remotely, over a call and a look through your systems. We go through what you’re running now, what it’s costing you and where the call is falling out of the process. You get a written plan and a fixed-price quote for the work.

$450
fixed price
  • Review of your platform, numbers and call flows
  • Mapped against the systems you already run
  • Written plan, prioritised, in plain English
  • Fixed-price quote for the build
  • Remote engagement; on-site visits quoted
  • Yours to keep, whoever you use
Book the audit

Packages and retainers

For larger rollouts and anyone who wants us on the hook continuously: a block of hours a month at an agreed rate, with response times in writing.

Let’s talk
agreed monthly
  • Discounted rate against committed hours
  • Response and resolution targets in the contract
  • Named engineer who knows your build
  • Roadmap sessions each quarter
Scope a package

All prices in Australian dollars and exclude GST.

How it runs

Audit, plan, build, support

01

Audit

$450 fixed, run remotely. We map what you run, what it costs and where calls fall out of the process.

02

Plan and quote

A written plan, prioritised, and a fixed price for the build. No obligation to use us for it.

03

Build

We build, test against your real call flows and cut over out of hours. Your team is trained before it goes live.

04

Support

Response times in writing, a named engineer, and a platform vendor in the same timezone behind us.

Questions

Before you get in touch

What does a certified Gold reseller of Uniden Voice over Cloud actually get you?

Gold is the top partner tier, and it’s the reason we can do this work at all. It gives us direct engineering contact rather than a public support queue, access to the SDKs and APIs, and visibility of upcoming releases so we build around what is coming instead of building it twice. It also means the platform vendor is accountable to us contractually, which is what lets us put service levels in your agreement.

We aren’t technical at all. Is this for us?

Yes, and a good share of our work is exactly that. Small teams with no IT person are usually the ones getting the least out of the platform they’re already paying for. We set it up, write the documentation in plain English, train your staff and leave you a person to ring.

What does the $450 audit include, and is it on site?

A review of your current platform, numbers and call flows, mapped against the systems your business already runs, and a written plan with a fixed-price quote for the work. It is $450 plus GST, fixed, and it’s run remotely, which is what keeps it at that price anywhere in the country. If you want us on site we will quote that separately, and it’s usually worth it for a multi-site rollout or an old on-premises system nobody has documentation for. The plan is yours whether or not you engage us to build it.

How is the work charged after that?

Professional services are $150 per hour plus GST, billed against itemised work. Larger or ongoing engagements usually move to a monthly package at a discounted rate with response times written into the agreement. Every quote we give after the audit is fixed price, so the hourly rate is the ceiling, not a surprise.

Do we need to move to Uniden Voice over Cloud to work with you?

For the integration and AI work, yes, because that’s the platform we are certified on and the one flexible enough to do this properly. If you’re on something else, the audit still tells you what is possible and what a move would cost, and you’re free to take that plan elsewhere.

Can you commit to a service level?

Yes, on package and retainer engagements. Response and resolution targets go in the agreement. We can offer them because the platform underneath us is Australian owned and Australian supported, so our escalation path is a phone call in business hours rather than a ticket into another timezone.

Start here

Book the $450 systems audit

We go through what you’re running, what it’s costing you, and where the call is falling out of the process. You get a written plan and a fixed-price quote for the work, and it’s yours to keep whoever you decide to use.

$450 fixed, in AUD, excluding GST. Conducted remotely, Australia wide. On-site audits quoted separately on request.