Activity #823
User #129 reply Michaela Feeney replied to your comment
7/27/2025, 8:20:58 AM
Overview
notifications / #823
User #129 reply Michaela Feeney replied to your comment
7/27/2025, 8:20:58 AM
User #129 reply Michaela Feeney replied to your comment
7/27/2025, 8:20:58 AM
View recordUser #129 reply Michaela Feeney replied to your comment · 7/27/2025, 8:20:58 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/823" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/823" ); 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/823"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/823"
)
notification = res.json() Response
{
"id": 823,
"userId": 129,
"type": "reply",
"title": "Michaela Feeney replied to your comment",
"body": "Nulla bonus convoco dolorum cimentarius theatrum sursum explicabo quae.",
"isRead": false,
"link": null,
"createdAt": "2025-07-27T08:20:58.063Z"
}