Activity #204
User #202 reply Vidal Parker replied to your comment
2/3/2026, 6:53:33 PM
Overview
notifications / #204
User #202 reply Vidal Parker replied to your comment
2/3/2026, 6:53:33 PM
User #202 reply Vidal Parker replied to your comment
2/3/2026, 6:53:33 PM
View recordUser #202 reply Vidal Parker replied to your comment · 2/3/2026, 6:53:33 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/204" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/204" ); 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/204"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/204"
)
notification = res.json() Response
{
"id": 204,
"userId": 202,
"type": "reply",
"title": "Vidal Parker replied to your comment",
"body": "Cognomen tamen corporis.",
"isRead": true,
"link": null,
"createdAt": "2026-02-03T18:53:33.758Z"
}