Activity #26
User #238 system System notification
8/3/2025, 4:05:32 AM
Overview
notifications / #26
User #238 system System notification
8/3/2025, 4:05:32 AM
User #238 system System notification
8/3/2025, 4:05:32 AM
View recordUser #238 system System notification · 8/3/2025, 4:05:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/26" ); 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/26"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/26"
)
notification = res.json() Response
{
"id": 26,
"userId": 238,
"type": "system",
"title": "System notification",
"body": "Omnis voluntarius pecco tepesco quam carus absorbeo decumbo.",
"isRead": true,
"link": "https://example.com/system/Ci26Jh2v",
"createdAt": "2025-08-03T04:05:32.002Z"
}