Activity #366
User #46 system System notification
5/19/2026, 4:21:30 AM
Overview
notifications / #366
User #46 system System notification
5/19/2026, 4:21:30 AM
User #46 system System notification
5/19/2026, 4:21:30 AM
View recordUser #46 system System notification · 5/19/2026, 4:21:30 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/366" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/366" ); 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/366"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/366"
)
notification = res.json() Response
{
"id": 366,
"userId": 46,
"type": "system",
"title": "System notification",
"body": "Adflicto denuo tonsor suscipio circumvenio vereor territo verbum stipes.",
"isRead": true,
"link": "https://example.com/system/wJz0cjCW",
"createdAt": "2026-05-19T04:21:30.649Z"
}