Activity #1924
User #61 system System notification
4/13/2026, 9:34:58 AM
Overview
notifications / #1924
User #61 system System notification
4/13/2026, 9:34:58 AM
User #61 system System notification
4/13/2026, 9:34:58 AM
View recordUser #61 system System notification · 4/13/2026, 9:34:58 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1924" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1924" ); 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/1924"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1924"
)
notification = res.json() Response
{
"id": 1924,
"userId": 61,
"type": "system",
"title": "System notification",
"body": "Pax ago appello abstergo suscipit paulatim.",
"isRead": true,
"link": null,
"createdAt": "2026-04-13T09:34:58.261Z"
}