Activity #1575
User #37 system System notification
9/21/2025, 10:14:02 PM
Overview
notifications / #1575
User #37 system System notification
9/21/2025, 10:14:02 PM
User #37 system System notification
9/21/2025, 10:14:02 PM
View recordUser #37 system System notification · 9/21/2025, 10:14:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1575" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1575" ); 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/1575"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1575"
)
notification = res.json() Response
{
"id": 1575,
"userId": 37,
"type": "system",
"title": "System notification",
"body": "Casus ipsam amicitia usitas.",
"isRead": false,
"link": null,
"createdAt": "2025-09-21T22:14:02.848Z"
}