Activity #1295
User #54 system System notification
3/23/2026, 11:15:35 AM
Overview
notifications / #1295
User #54 system System notification
3/23/2026, 11:15:35 AM
User #54 system System notification
3/23/2026, 11:15:35 AM
View recordUser #54 system System notification · 3/23/2026, 11:15:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1295" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1295" ); 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/1295"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1295"
)
notification = res.json() Response
{
"id": 1295,
"userId": 54,
"type": "system",
"title": "System notification",
"body": "Consuasor demo astrum arcesso traho.",
"isRead": true,
"link": "https://example.com/system/dHTDFm3n",
"createdAt": "2026-03-23T11:15:35.089Z"
}