Activity #483
User #159 system System notification
3/24/2026, 3:16:16 AM
Overview
notifications / #483
User #159 system System notification
3/24/2026, 3:16:16 AM
User #159 system System notification
3/24/2026, 3:16:16 AM
View recordUser #159 system System notification · 3/24/2026, 3:16:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/483" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/483" ); 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/483"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/483"
)
notification = res.json() Response
{
"id": 483,
"userId": 159,
"type": "system",
"title": "System notification",
"body": "Eum amitto temperantia ciminatio comitatus.",
"isRead": true,
"link": "https://example.com/system/PTwoIr9G",
"createdAt": "2026-03-24T03:16:16.746Z"
}