Activity #12
User #16 system System notification
2/15/2026, 11:15:02 PM
Overview
notifications / #12
User #16 system System notification
2/15/2026, 11:15:02 PM
User #16 system System notification
2/15/2026, 11:15:02 PM
View recordUser #16 system System notification · 2/15/2026, 11:15:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/12" ); 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/12"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/12"
)
notification = res.json() Response
{
"id": 12,
"userId": 16,
"type": "system",
"title": "System notification",
"body": "Cervus adimpleo alioqui cinis aedificium.",
"isRead": true,
"link": "https://example.com/system/-us6VWNA",
"createdAt": "2026-02-15T23:15:02.273Z"
}