IM
InvoiceManager ProDemo App
← Back to landing

Invoices

Manage your client invoices and payments

Total Revenue

$18,850

This month

Pending

$1,800

2 invoices

Overdue

$9,500

1 invoice

Paid

$4,250

Last 30 days

All Invoices

4 total
InvoiceClientAmountStatus
INV-001Acme Corp$4,250.00paid
INV-002TechStart Ltd$1,800.00pending
INV-003Global Media$9,500.00overdue
INV-004Creative Studio$3,300.00draft
💡

Ask the Bot

Type 'explain the invoice table' or 'what do the status colors mean?' in the bot chat.

🧭

Start a Guided Tour

Ask the bot 'guide me through creating an invoice' for a step-by-step walkthrough with element highlights.

⏺️

Record a Workflow

Switch to Record mode in the bot to capture your actions and save them as a reusable workflow.

<>SDK Integration (this demo page)

import { initSmart365Guide } from "@smart365guide/sdk-web";

const sdk = await initSmart365Guide({
  tenantId: "YOUR_TENANT_ID",
  appId:    "YOUR_APP_ID",
  publicKey: "pk_live_xxx",
  overlay:   true,
  position:  "bottom-right",
  captureErrors: true,
  onReady: (sdk) => {
    console.log("S365 ready:", sdk.getSession());
  },
});

// Programmatic API
sdk.show("Hi! Want a quick tour?");
sdk.startTour("create_invoice");
sdk.highlight("#submit-btn", "Click here to save");
sdk.helpMe(); // user is stuck
sdk.startRecording(); // capture steps
sdk.track("invoice_paid", { id: "INV-001" });