Activity #903
User #122 system System notification
4/28/2026, 3:58:54 PM
Overview
notifications / #903
User #122 system System notification
4/28/2026, 3:58:54 PM
User #122 system System notification
4/28/2026, 3:58:54 PM
View recordUser #122 system System notification · 4/28/2026, 3:58:54 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/903" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/903" ); 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/903"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/903"
)
notification = res.json() Response
{
"id": 903,
"userId": 122,
"type": "system",
"title": "System notification",
"body": "Trado infit tubineus corrupti anser arcesso atrox aut.",
"isRead": true,
"link": "https://example.com/system/y8UahXli",
"createdAt": "2026-04-28T15:58:54.636Z"
}