Activity #1169
User #125 system System notification
4/1/2026, 11:24:51 AM
Overview
notifications / #1169
User #125 system System notification
4/1/2026, 11:24:51 AM
User #125 system System notification
4/1/2026, 11:24:51 AM
View recordUser #125 system System notification · 4/1/2026, 11:24:51 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1169" ); 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/1169"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1169"
)
notification = res.json() Response
{
"id": 1169,
"userId": 125,
"type": "system",
"title": "System notification",
"body": "Comitatus necessitatibus tres tres valde tertius arto villa depono centum.",
"isRead": false,
"link": "https://example.com/system/k15ftk61",
"createdAt": "2026-04-01T11:24:51.941Z"
}