Activity #1906
User #122 reply Roma Durgan replied to your comment
6/3/2025, 3:29:06 AM
Overview
notifications / #1906
User #122 reply Roma Durgan replied to your comment
6/3/2025, 3:29:06 AM
User #122 reply Roma Durgan replied to your comment
6/3/2025, 3:29:06 AM
View recordUser #122 reply Roma Durgan replied to your comment · 6/3/2025, 3:29:06 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1906" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1906" ); 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/1906"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1906"
)
notification = res.json() Response
{
"id": 1906,
"userId": 122,
"type": "reply",
"title": "Roma Durgan replied to your comment",
"body": "Cometes distinctio titulus itaque quasi cubicularis cognatus ipsa.",
"isRead": false,
"link": "https://example.com/reply/muF33gkW",
"createdAt": "2025-06-03T03:29:06.530Z"
}