Activity #430
User #195 system System notification
12/6/2025, 7:07:27 PM
Overview
notifications / #430
User #195 system System notification
12/6/2025, 7:07:27 PM
User #195 system System notification
12/6/2025, 7:07:27 PM
View recordUser #195 system System notification · 12/6/2025, 7:07:27 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/430" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/430" ); 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/430"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/430"
)
notification = res.json() Response
{
"id": 430,
"userId": 195,
"type": "system",
"title": "System notification",
"body": "Contigo tenus vis qui aiunt.",
"isRead": false,
"link": "https://example.com/system/32H4Bbvf",
"createdAt": "2025-12-06T19:07:27.880Z"
}