Activity #1254
User #62 system System notification
3/7/2026, 2:45:34 PM
Overview
notifications / #1254
User #62 system System notification
3/7/2026, 2:45:34 PM
User #62 system System notification
3/7/2026, 2:45:34 PM
View recordUser #62 system System notification · 3/7/2026, 2:45:34 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1254" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1254" ); 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/1254"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1254"
)
notification = res.json() Response
{
"id": 1254,
"userId": 62,
"type": "system",
"title": "System notification",
"body": "Ut caste stultus crepusculum vitium toties coerceo caritas tego.",
"isRead": true,
"link": null,
"createdAt": "2026-03-07T14:45:34.499Z"
}