Activity #185
User #117 reply Mike Zemlak replied to your comment
6/23/2025, 8:18:55 PM
Overview
notifications / #185
User #117 reply Mike Zemlak replied to your comment
6/23/2025, 8:18:55 PM
User #117 reply Mike Zemlak replied to your comment
6/23/2025, 8:18:55 PM
View recordUser #117 reply Mike Zemlak replied to your comment · 6/23/2025, 8:18:55 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/185" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/185" ); 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/185"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/185"
)
notification = res.json() Response
{
"id": 185,
"userId": 117,
"type": "reply",
"title": "Mike Zemlak replied to your comment",
"body": "Corporis comparo deputo adfectus reiciendis pecco cubicularis sapiente cunabula.",
"isRead": true,
"link": "https://example.com/reply/l0dRSCvy",
"createdAt": "2025-06-23T20:18:55.572Z"
}