Activity #1425
User #118 system System notification
4/5/2026, 4:19:01 PM
Overview
notifications / #1425
User #118 system System notification
4/5/2026, 4:19:01 PM
User #118 system System notification
4/5/2026, 4:19:01 PM
View recordUser #118 system System notification · 4/5/2026, 4:19:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1425" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1425" ); 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/1425"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1425"
)
notification = res.json() Response
{
"id": 1425,
"userId": 118,
"type": "system",
"title": "System notification",
"body": "Bis ipsum caveo ver asporto pariatur tamdiu aggero cresco deinde.",
"isRead": false,
"link": "https://example.com/system/qOi5Ev8k",
"createdAt": "2026-04-05T16:19:01.380Z"
}