Activity #294
User #130 system System notification
5/23/2025, 9:31:26 AM
Overview
notifications / #294
User #130 system System notification
5/23/2025, 9:31:26 AM
User #130 system System notification
5/23/2025, 9:31:26 AM
View recordUser #130 system System notification · 5/23/2025, 9:31:26 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/294" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/294" ); 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/294"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/294"
)
notification = res.json() Response
{
"id": 294,
"userId": 130,
"type": "system",
"title": "System notification",
"body": "Doloribus debitis quis accedo magnam commodi tollo tempus.",
"isRead": true,
"link": null,
"createdAt": "2025-05-23T09:31:26.590Z"
}