A plain language integration guide for centre owners, IT teams and executives.
Most organisations start on SuggiCare as a hosted service (SaaS), with no IT work needed beyond creating accounts. Larger or enterprise organisations layer on integrations later, on their own schedule. You do not have to choose between SaaS and integrated, you grow into integration.
Your team signs in at suggicare.io. Staff use the web app and the kiosk tablet. Families use the family app. Devices pair through the facility bridge tablet. Nothing is installed on your network.
You stay on the hosted SuggiCare platform, but we connect a few of your existing systems through ready built bridges. No code from your side.
For enterprise groups (multi state aged care, hospital networks, large NDIS providers, national childcare chains). SuggiCare exposes a documented REST API, secure webhooks and SFTP for batch files. Your platforms read and write into SuggiCare directly.
| Category | Examples | Method |
|---|---|---|
| Identity and SSO | Microsoft 365, Google Workspace, Okta, Azure AD, OneLogin | SAML 2.0, OAuth 2.0, OpenID Connect |
| HRIS and payroll | Employment Hero, Xero, Workday, BambooHR, MYOB, KeyPay | API or SFTP nightly |
| Rostering | Humanity, Deputy, Tanda, Microkeeper, internal systems | API or webhook |
| EHR and client systems | Carelink, Lumary, Procura, AlayaCare, internal EHR | API, webhook out, HL7 FHIR on request |
| Finance | Xero, QuickBooks, NetSuite, MYOB, Sage | API push of invoices and CSV exports |
| Communications | Microsoft Teams, Slack, SMS gateways, email | Webhook out |
| BI and warehousing | Power BI, Tableau, Looker, Snowflake, BigQuery | Read only API or scheduled CSV to S3 |
| Compliance feeds | ACQSC reporting, NDIS portals, ESG reporting | Generated exports, API on request |
For organisations on Option B or C, here is what SuggiCare provides on day one of an integration project.
Example, push of an alert acknowledgement from your case management tool back into SuggiCare:
POST https://api.suggicare.io/v1/alerts/{alert_id}/acknowledge
Authorization: Bearer ORG_API_KEY
Content-Type: application/json
{
"acknowledged_by": "staff_42",
"method": "case_management",
"note": "Visited resident, settled, no action required"
}
Example, webhook out when SuggiCare detects an incident:
POST https://your-system.example.com/suggicare/incidents
X-Suggicare-Signature: t=1715379600,v1=...
{
"type": "incident.opened",
"organisation_id": "org_123",
"site_id": "site_45",
"ward_id": "ward_a",
"recipient_id": "rec_999",
"severity": "high",
"summary": "Sustained heart rate drift outside personal baseline",
"occurred_at": "2026-05-10T07:53:00+10:00"
}
SuggiCare wearables pair through the facility bridge tablet using each recipient's QR code. Wearables never pair to a resident's personal phone. The bridge is a standard Android or iPad tablet supplied by the facility or by SuggiCare. It only needs Wi-Fi and a power point.
*.suggicare.io is enough.| If your organisation looks like this | Recommended path |
|---|---|
| 1 to 3 sites, no dedicated IT, want to start in days | Option A, SaaS only |
| Multi site, has Microsoft 365 or Google Workspace, wants SSO and Teams alerts | Option B, SaaS plus light integrations |
| National or multi state, existing rostering, HRIS or EHR, BI team, procurement process | Option C, Full enterprise integration |
| In-home care provider with a coordinator app and a CRM | Option B to start, Option C inside 6 months |
| NDIS provider with plan management and case management tools | Option C, with webhook out into case management |
| Week | Option A | Option B | Option C |
|---|---|---|---|
| 1 | Live in production | Live in production | Discovery, scope sign off |
| 2 to 3 | Optimisation, training | SSO, calendar, webhooks live | Sandbox API connected |
| 4 to 8 | BAU | BAU | HRIS, rostering, EHR connected, UAT |
| 9 to 12 | BAU | BAU | Production cutover, hypercare |