Activity #783
User #153 system System notification
7/30/2025, 2:25:18 PM
Overview
notifications / #783
User #153 system System notification
7/30/2025, 2:25:18 PM
User #153 system System notification
7/30/2025, 2:25:18 PM
View recordUser #153 system System notification · 7/30/2025, 2:25:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/783" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/783" ); 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/783"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/783"
)
notification = res.json() Response
{
"id": 783,
"userId": 153,
"type": "system",
"title": "System notification",
"body": "Trado aer harum.",
"isRead": false,
"link": "https://example.com/system/8DdeP5EX",
"createdAt": "2025-07-30T14:25:18.806Z"
}