Activity #1992
User #139 system System notification
12/9/2025, 4:12:31 PM
Overview
notifications / #1992
User #139 system System notification
12/9/2025, 4:12:31 PM
User #139 system System notification
12/9/2025, 4:12:31 PM
View recordUser #139 system System notification · 12/9/2025, 4:12:31 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1992" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1992" ); 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/1992"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1992"
)
notification = res.json() Response
{
"id": 1992,
"userId": 139,
"type": "system",
"title": "System notification",
"body": "Conscendo sto tergum comedo damno auxilium.",
"isRead": false,
"link": "https://example.com/system/WsXbk3nR",
"createdAt": "2025-12-09T16:12:31.019Z"
}