Activity #344
User #147 system System notification
9/24/2025, 9:02:10 PM
Overview
notifications / #344
User #147 system System notification
9/24/2025, 9:02:10 PM
User #147 system System notification
9/24/2025, 9:02:10 PM
View recordUser #147 system System notification · 9/24/2025, 9:02:10 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/344" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/344" ); 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/344"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/344"
)
notification = res.json() Response
{
"id": 344,
"userId": 147,
"type": "system",
"title": "System notification",
"body": "Aegrotatio usitas bonus.",
"isRead": true,
"link": "https://example.com/system/LsOPuatV",
"createdAt": "2025-09-24T21:02:10.530Z"
}