Activity #1771
User #112 system System notification
11/22/2025, 7:23:56 AM
Overview
notifications / #1771
User #112 system System notification
11/22/2025, 7:23:56 AM
User #112 system System notification
11/22/2025, 7:23:56 AM
View recordUser #112 system System notification · 11/22/2025, 7:23:56 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1771" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1771" ); 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/1771"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1771"
)
notification = res.json() Response
{
"id": 1771,
"userId": 112,
"type": "system",
"title": "System notification",
"body": "Traho caveo repellat demens alter valens stultus sortitus ceno.",
"isRead": true,
"link": "https://example.com/system/RypzAT76",
"createdAt": "2025-11-22T07:23:56.206Z"
}