Activity #363
User #157 reply Phyllis Hyatt replied to your comment
7/2/2025, 3:42:19 PM
Overview
notifications / #363
User #157 reply Phyllis Hyatt replied to your comment
7/2/2025, 3:42:19 PM
User #157 reply Phyllis Hyatt replied to your comment
7/2/2025, 3:42:19 PM
View recordUser #157 reply Phyllis Hyatt replied to your comment · 7/2/2025, 3:42:19 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/363" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/363" ); 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/363"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/363"
)
notification = res.json() Response
{
"id": 363,
"userId": 157,
"type": "reply",
"title": "Phyllis Hyatt replied to your comment",
"body": "Creo comparo celebrer vomer copia vicissitudo spiculum voco doloremque.",
"isRead": true,
"link": null,
"createdAt": "2025-07-02T15:42:19.059Z"
}