Activity #739
User #247 system System notification
2/15/2026, 7:49:55 PM
Overview
notifications / #739
User #247 system System notification
2/15/2026, 7:49:55 PM
User #247 system System notification
2/15/2026, 7:49:55 PM
View recordUser #247 system System notification · 2/15/2026, 7:49:55 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/739" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/739" ); const notification = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/notifications.d.ts https://example-data.com/types/notifications.d.ts
import type { Notification } from "./types/notifications";
const res = await fetch(
"https://example-data.com/api/v1/notifications/739"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/739"
)
notification = res.json() Response
{
"id": 739,
"userId": 247,
"type": "system",
"title": "System notification",
"body": "Delectatio necessitatibus patrocinor tepidus argumentum advenio vox hic.",
"isRead": false,
"link": "https://example.com/system/x9xmPlQm",
"createdAt": "2026-02-15T19:49:55.758Z"
}