Activity #945
User #125 system System notification
11/14/2025, 6:14:11 AM
Overview
notifications / #945
User #125 system System notification
11/14/2025, 6:14:11 AM
User #125 system System notification
11/14/2025, 6:14:11 AM
View recordUser #125 system System notification · 11/14/2025, 6:14:11 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/945" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/945" ); 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/945"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/945"
)
notification = res.json() Response
{
"id": 945,
"userId": 125,
"type": "system",
"title": "System notification",
"body": "Depraedor cometes amor utrimque tabula tredecim.",
"isRead": false,
"link": "https://example.com/system/cqx9h1_4",
"createdAt": "2025-11-14T06:14:11.690Z"
}