Activity #365
User #78 system System notification
3/10/2026, 4:08:08 PM
Overview
notifications / #365
User #78 system System notification
3/10/2026, 4:08:08 PM
User #78 system System notification
3/10/2026, 4:08:08 PM
View recordUser #78 system System notification · 3/10/2026, 4:08:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/365" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/365" ); 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/365"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/365"
)
notification = res.json() Response
{
"id": 365,
"userId": 78,
"type": "system",
"title": "System notification",
"body": "Vel strues casso suffragium in.",
"isRead": true,
"link": null,
"createdAt": "2026-03-10T16:08:08.026Z"
}