Activity #89
User #68 system System notification
4/28/2026, 12:48:58 PM
Overview
notifications / #89
User #68 system System notification
4/28/2026, 12:48:58 PM
User #68 system System notification
4/28/2026, 12:48:58 PM
View recordUser #68 system System notification · 4/28/2026, 12:48:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/89" ); 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/89"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/89"
)
notification = res.json() Response
{
"id": 89,
"userId": 68,
"type": "system",
"title": "System notification",
"body": "Accusamus vox aegrotatio aer adversus aiunt.",
"isRead": false,
"link": "https://example.com/system/ptlr6WVH",
"createdAt": "2026-04-28T12:48:58.088Z"
}