AppHub Tether
Notify
Sends a notification that appears as a system tray notification and as an in-app toast inside AppHub Store — for alerting users to events while they are in-game.
POST
http://127.0.0.1:7420/notify
This endpoint requires AppHub Store to be running on your machine. The live tester calls your local AppHub instance directly.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
| title | string | required | Notification title (max 100 chars) |
| body | string | optional | Notification body text (max 300 chars) |
| appid | string | optional | Your app's packagename (for attribution) |
Test this endpoint
Headers
Body
Success response 200
{ "ok": true }
Notes
| Scenario | Detail |
|---|---|
| Fullscreen game | AppHub shows a system tray notification (visible after Alt+Tab) and logs the notification internally. In-app toast appears when the launcher window is visible. |
| GET request | Only POST is accepted. GET requests return 404. |