Activity #334
User #192 system System notification
11/4/2025, 6:52:47 PM
Overview
notifications / #334
User #192 system System notification
11/4/2025, 6:52:47 PM
User #192 system System notification
11/4/2025, 6:52:47 PM
View recordUser #192 system System notification · 11/4/2025, 6:52:47 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/334" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/334" ); 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/334"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/334"
)
notification = res.json() Response
{
"id": 334,
"userId": 192,
"type": "system",
"title": "System notification",
"body": "Canis celer supra auditor unde volubilis alter decipio.",
"isRead": true,
"link": "https://example.com/system/AoDnw4m2",
"createdAt": "2025-11-04T18:52:47.438Z"
}