Activity #1941
User #226 system System notification
12/14/2025, 6:59:38 AM
Overview
notifications / #1941
User #226 system System notification
12/14/2025, 6:59:38 AM
User #226 system System notification
12/14/2025, 6:59:38 AM
View recordUser #226 system System notification · 12/14/2025, 6:59:38 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1941" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1941" ); 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/1941"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1941"
)
notification = res.json() Response
{
"id": 1941,
"userId": 226,
"type": "system",
"title": "System notification",
"body": "Tripudio cado cibo delego vulnero colo commodo vigor.",
"isRead": false,
"link": null,
"createdAt": "2025-12-14T06:59:38.961Z"
}