Activity #597
User #149 system System notification
7/8/2025, 6:45:54 AM
Overview
notifications / #597
User #149 system System notification
7/8/2025, 6:45:54 AM
User #149 system System notification
7/8/2025, 6:45:54 AM
View recordUser #149 system System notification · 7/8/2025, 6:45:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/597" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/597" ); 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/597"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/597"
)
notification = res.json() Response
{
"id": 597,
"userId": 149,
"type": "system",
"title": "System notification",
"body": "Suscipio solio derelinquo.",
"isRead": false,
"link": null,
"createdAt": "2025-07-08T06:45:54.458Z"
}