Activity #1200
User #163 system System notification
11/20/2025, 3:18:32 PM
Overview
notifications / #1200
User #163 system System notification
11/20/2025, 3:18:32 PM
User #163 system System notification
11/20/2025, 3:18:32 PM
View recordUser #163 system System notification · 11/20/2025, 3:18:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1200" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1200" ); 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/1200"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1200"
)
notification = res.json() Response
{
"id": 1200,
"userId": 163,
"type": "system",
"title": "System notification",
"body": "Tersus architecto adhuc comitatus arbor desolo aureus advenio.",
"isRead": true,
"link": "https://example.com/system/ymOMzC3i",
"createdAt": "2025-11-20T15:18:32.383Z"
}