Activity #1729
User #247 system System notification
8/17/2025, 2:41:55 AM
Overview
notifications / #1729
User #247 system System notification
8/17/2025, 2:41:55 AM
User #247 system System notification
8/17/2025, 2:41:55 AM
View recordUser #247 system System notification · 8/17/2025, 2:41:55 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1729" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1729" ); 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/1729"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1729"
)
notification = res.json() Response
{
"id": 1729,
"userId": 247,
"type": "system",
"title": "System notification",
"body": "Ullus usitas sollicito sono caelum suppono modi iusto ambitus cohors.",
"isRead": false,
"link": "https://example.com/system/GKedFkB8",
"createdAt": "2025-08-17T02:41:55.260Z"
}