Activity #1876
User #157 system System notification
6/18/2025, 1:36:32 AM
Overview
notifications / #1876
User #157 system System notification
6/18/2025, 1:36:32 AM
User #157 system System notification
6/18/2025, 1:36:32 AM
View recordUser #157 system System notification · 6/18/2025, 1:36:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1876" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1876" ); 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/1876"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1876"
)
notification = res.json() Response
{
"id": 1876,
"userId": 157,
"type": "system",
"title": "System notification",
"body": "Tamquam credo surculus.",
"isRead": false,
"link": "https://example.com/system/7Z3deqnR",
"createdAt": "2025-06-18T01:36:32.550Z"
}