Activity #1068
User #15 system System notification
9/16/2025, 4:59:17 AM
Overview
notifications / #1068
User #15 system System notification
9/16/2025, 4:59:17 AM
User #15 system System notification
9/16/2025, 4:59:17 AM
View recordUser #15 system System notification · 9/16/2025, 4:59:17 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1068" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1068" ); 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/1068"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1068"
)
notification = res.json() Response
{
"id": 1068,
"userId": 15,
"type": "system",
"title": "System notification",
"body": "Vero charisma acidus arma depopulo termes animus.",
"isRead": false,
"link": null,
"createdAt": "2025-09-16T04:59:17.636Z"
}