Activity #1732
User #212 system System notification
4/12/2026, 7:14:37 PM
Overview
notifications / #1732
User #212 system System notification
4/12/2026, 7:14:37 PM
User #212 system System notification
4/12/2026, 7:14:37 PM
View recordUser #212 system System notification · 4/12/2026, 7:14:37 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1732" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1732" ); 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/1732"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1732"
)
notification = res.json() Response
{
"id": 1732,
"userId": 212,
"type": "system",
"title": "System notification",
"body": "Utpote quaerat culpo amet spiritus capto tonsor spiculum.",
"isRead": false,
"link": "https://example.com/system/OG_RQRVS",
"createdAt": "2026-04-12T19:14:37.685Z"
}