Activity #735
User #103 system System notification
4/10/2026, 11:16:39 PM
Overview
notifications / #735
User #103 system System notification
4/10/2026, 11:16:39 PM
User #103 system System notification
4/10/2026, 11:16:39 PM
View recordUser #103 system System notification · 4/10/2026, 11:16:39 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/735" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/735" ); 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/735"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/735"
)
notification = res.json() Response
{
"id": 735,
"userId": 103,
"type": "system",
"title": "System notification",
"body": "Aveho ascisco tabesco tum.",
"isRead": true,
"link": "https://example.com/system/oVbLwO2f",
"createdAt": "2026-04-10T23:16:39.467Z"
}