Already on every device
Desktop, web, phone, watch notifications. Mum's check-in surfaces in the system you already trust.
Working parents live in Microsoft Teams all day. Mirror Getwello to a private Teams channel and the morning check-in arrives between standup and lunch, with Adaptive Card formatting so it reads as a proper message and not a JSON blob.
Coordinator-only. Included in the £4.99 plan. Same day to set up.
Desktop, web, phone, watch notifications. Mum's check-in surfaces in the system you already trust.
Coloured header, structured fields, action buttons. Teams native, not a foreign-looking blob.
If you have Microsoft 365 already, incoming webhooks are included. No extra subscription.
Teams keeps the thread. Six months from now you can search 'GP appointment' and find the original message.
POST https://yourtenant.webhook.office.com/...
{
"type": "message",
"attachments": [{
"contentType": "application/vnd.microsoft.card.adaptive",
"content": {
"type": "AdaptiveCard",
"body": [
{ "type": "TextBlock",
"text": "Mum has just checked in",
"weight": "Bolder", "size": "Large" },
{ "type": "FactSet", "facts": [
{ "title": "Time", "value": "08:14 BST" },
{ "title": "Mood", "value": "Fine" }
]}
]
}
}]
}Format check-ins as Adaptive Cards and Teams renders them with a coloured header, structured fields, an 'Open in Getwello' action button. The siblings see them in the same flow as their work standups, but cleanly separated by channel.
Channel · ... menu · Manage channel · Connectors · Incoming Webhook. Name it 'Getwello', upload an icon if you like, copy the URL.
Settings → Developer API as a Coordinator. Name it 'Microsoft Teams'. Copy the gw_live_ token (not strictly needed but useful for any direct calls later).
Settings → Developer API → Webhooks. URL is the Teams webhook from step 1. Choose Adaptive Card format via Zapier, Make or a Cloudflare Worker as middleman.
Test fires a synthetic event. If your Teams channel shows a card within a couple of seconds, you're live. Tune the channel's notification level to taste.
Usually no, if you're using a personal channel in your own Teams account. Some corporate tenants restrict incoming webhooks; if yours does, ask IT to allow an Incoming Webhook connector on a specific channel.
Both work. The free personal Teams plan supports incoming webhooks. Useful if you want to keep family separate from work.
Teams' rich card format, similar to Slack Blocks. Title, fields, action buttons. Our setup guide shows how to send check-ins as Adaptive Cards rather than raw text, so they look at home in Teams.
Yes if their Teams notifications are on. Like any Teams message, the channel notification settings (All / Mentions only / Off) decide. For missed-day alerts, use @here to wake everyone.
Teams incoming webhooks have a 4 MB body limit (far more than we'll ever send) and a soft 4 requests/sec rate limit (also irrelevant for family use). The integration is durable.
Some families wire two or three at the same time. The webhook fans out, the API keys stay the same.
See every integration or jump to the Developer API overview.
Mint your first API key in two minutes. Coordinator-only. Included in the £4.99 family plan.