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| Invoice | Client | Amount | Status | |
|---|---|---|---|---|
| INV-001 | Acme Corp | $4,250.00 | paid | |
| INV-002 | TechStart Ltd | $1,800.00 | pending | |
| INV-003 | Global Media | $9,500.00 | overdue | |
| INV-004 | Creative Studio | $3,300.00 | draft |
💡
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" });