Activity #811
User #52 system System notification
12/8/2025, 7:11:53 AM
Overview
notifications / #811
User #52 system System notification
12/8/2025, 7:11:53 AM
User #52 system System notification
12/8/2025, 7:11:53 AM
View recordUser #52 system System notification · 12/8/2025, 7:11:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/811" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/811" ); 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/811"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/811"
)
notification = res.json() Response
{
"id": 811,
"userId": 52,
"type": "system",
"title": "System notification",
"body": "Aliqua in cilicium adstringo balbus comptus cuppedia audeo angelus.",
"isRead": true,
"link": "https://example.com/system/3nf5NcCR",
"createdAt": "2025-12-08T07:11:53.559Z"
}