Activity #862
User #214 system System notification
9/15/2025, 4:32:18 PM
Overview
notifications / #862
User #214 system System notification
9/15/2025, 4:32:18 PM
User #214 system System notification
9/15/2025, 4:32:18 PM
View recordUser #214 system System notification · 9/15/2025, 4:32:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/862" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/862" ); 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/862"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/862"
)
notification = res.json() Response
{
"id": 862,
"userId": 214,
"type": "system",
"title": "System notification",
"body": "Deludo sodalitas dignissimos cognatus comburo cornu vulnero subnecto assumenda.",
"isRead": true,
"link": "https://example.com/system/zYxbvHh6",
"createdAt": "2025-09-15T16:32:18.039Z"
}