Activity #59
User #73 reply Mable West replied to your comment
6/26/2025, 3:29:11 PM
Overview
notifications / #59
User #73 reply Mable West replied to your comment
6/26/2025, 3:29:11 PM
User #73 reply Mable West replied to your comment
6/26/2025, 3:29:11 PM
View recordUser #73 reply Mable West replied to your comment · 6/26/2025, 3:29:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/59" ); 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/59"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/59"
)
notification = res.json() Response
{
"id": 59,
"userId": 73,
"type": "reply",
"title": "Mable West replied to your comment",
"body": "Fugit doloribus reiciendis peior ciminatio sophismata denuo.",
"isRead": false,
"link": "https://example.com/reply/LaplYEbc",
"createdAt": "2025-06-26T15:29:11.511Z"
}