Activity #440
User #221 system System notification
12/17/2025, 9:31:03 AM
Overview
notifications / #440
User #221 system System notification
12/17/2025, 9:31:03 AM
User #221 system System notification
12/17/2025, 9:31:03 AM
View recordUser #221 system System notification · 12/17/2025, 9:31:03 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/440" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/440" ); 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/440"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/440"
)
notification = res.json() Response
{
"id": 440,
"userId": 221,
"type": "system",
"title": "System notification",
"body": "Eius sto bellicus aeneus tutis complectus tantillus ademptio.",
"isRead": true,
"link": "https://example.com/system/z40a5uwK",
"createdAt": "2025-12-17T09:31:03.375Z"
}