Activity #47
User #211 system System notification
10/16/2025, 9:06:36 AM
Overview
notifications / #47
User #211 system System notification
10/16/2025, 9:06:36 AM
User #211 system System notification
10/16/2025, 9:06:36 AM
View recordUser #211 system System notification · 10/16/2025, 9:06:36 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/47" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/47" ); 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/47"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/47"
)
notification = res.json() Response
{
"id": 47,
"userId": 211,
"type": "system",
"title": "System notification",
"body": "Termes carpo porro quae.",
"isRead": true,
"link": "https://example.com/system/l0HMP9CY",
"createdAt": "2025-10-16T09:06:36.968Z"
}