Activity #690
User #73 system System notification
9/3/2025, 6:16:23 AM
Overview
notifications / #690
User #73 system System notification
9/3/2025, 6:16:23 AM
User #73 system System notification
9/3/2025, 6:16:23 AM
View recordUser #73 system System notification · 9/3/2025, 6:16:23 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/690" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/690" ); 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/690"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/690"
)
notification = res.json() Response
{
"id": 690,
"userId": 73,
"type": "system",
"title": "System notification",
"body": "Undique credo clarus bellum votum tergo aedificium.",
"isRead": false,
"link": "https://example.com/system/MKtHP1-c",
"createdAt": "2025-09-03T06:16:23.701Z"
}