Activity #83
User #104 system System notification
1/23/2026, 4:09:57 AM
Overview
notifications / #83
User #104 system System notification
1/23/2026, 4:09:57 AM
User #104 system System notification
1/23/2026, 4:09:57 AM
View recordUser #104 system System notification · 1/23/2026, 4:09:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/83" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/83" ); 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/83"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/83"
)
notification = res.json() Response
{
"id": 83,
"userId": 104,
"type": "system",
"title": "System notification",
"body": "Quaerat a caecus tabesco.",
"isRead": false,
"link": "https://example.com/system/W3e5y4yz",
"createdAt": "2026-01-23T04:09:57.185Z"
}