Activity #952
User #101 system System notification
12/17/2025, 4:08:19 PM
Overview
notifications / #952
User #101 system System notification
12/17/2025, 4:08:19 PM
User #101 system System notification
12/17/2025, 4:08:19 PM
View recordUser #101 system System notification · 12/17/2025, 4:08:19 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/952" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/952" ); 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/952"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/952"
)
notification = res.json() Response
{
"id": 952,
"userId": 101,
"type": "system",
"title": "System notification",
"body": "Tunc bonus bardus cinis vinco admitto curiositas.",
"isRead": false,
"link": "https://example.com/system/1LlROszh",
"createdAt": "2025-12-17T16:08:19.856Z"
}