Activity #1978
User #100 system System notification
3/1/2026, 4:13:41 PM
Overview
notifications / #1978
User #100 system System notification
3/1/2026, 4:13:41 PM
User #100 system System notification
3/1/2026, 4:13:41 PM
View recordUser #100 system System notification · 3/1/2026, 4:13:41 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1978" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1978" ); 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/1978"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1978"
)
notification = res.json() Response
{
"id": 1978,
"userId": 100,
"type": "system",
"title": "System notification",
"body": "Cunctatio damnatio commodi coruscus decens sordeo valeo clamo cuppedia.",
"isRead": false,
"link": "https://example.com/system/_X2nZe7H",
"createdAt": "2026-03-01T16:13:41.192Z"
}