Activity #347
User #203 reply Kenya Abshire replied to your comment
7/2/2025, 4:26:42 PM
Overview
notifications / #347
User #203 reply Kenya Abshire replied to your comment
7/2/2025, 4:26:42 PM
User #203 reply Kenya Abshire replied to your comment
7/2/2025, 4:26:42 PM
View recordUser #203 reply Kenya Abshire replied to your comment · 7/2/2025, 4:26:42 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/347" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/347" ); 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/347"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/347"
)
notification = res.json() Response
{
"id": 347,
"userId": 203,
"type": "reply",
"title": "Kenya Abshire replied to your comment",
"body": "Aveho absconditus terra theologus administratio vesco angulus argumentum umerus incidunt.",
"isRead": false,
"link": "https://example.com/reply/SatxD3mN",
"createdAt": "2025-07-02T16:26:42.209Z"
}