Activity #1215
User #39 reply Michale Hilpert replied to your comment
7/21/2025, 11:41:35 AM
Overview
notifications / #1215
User #39 reply Michale Hilpert replied to your comment
7/21/2025, 11:41:35 AM
User #39 reply Michale Hilpert replied to your comment
7/21/2025, 11:41:35 AM
View recordUser #39 reply Michale Hilpert replied to your comment · 7/21/2025, 11:41:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1215" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1215" ); 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/1215"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1215"
)
notification = res.json() Response
{
"id": 1215,
"userId": 39,
"type": "reply",
"title": "Michale Hilpert replied to your comment",
"body": "Clementia adinventitias synagoga rem traho corpus clarus corpus.",
"isRead": false,
"link": "https://example.com/reply/WJMBjlBE",
"createdAt": "2025-07-21T11:41:35.184Z"
}