Activity #1132
User #185 system System notification
10/3/2025, 11:15:59 AM
Overview
notifications / #1132
User #185 system System notification
10/3/2025, 11:15:59 AM
User #185 system System notification
10/3/2025, 11:15:59 AM
View recordUser #185 system System notification · 10/3/2025, 11:15:59 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1132" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1132" ); 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/1132"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1132"
)
notification = res.json() Response
{
"id": 1132,
"userId": 185,
"type": "system",
"title": "System notification",
"body": "Tollo maxime arcus spoliatio.",
"isRead": true,
"link": "https://example.com/system/25iRvBqb",
"createdAt": "2025-10-03T11:15:59.152Z"
}