Activity #317
User #32 mention Roberta Mueller-Yundt mentioned you in a post
7/8/2025, 10:56:45 PM
Overview
notifications / #317
User #32 mention Roberta Mueller-Yundt mentioned you in a post
7/8/2025, 10:56:45 PM
User #32 mention Roberta Mueller-Yundt mentioned you in a post
7/8/2025, 10:56:45 PM
View recordUser #32 mention Roberta Mueller-Yundt mentioned you in a post · 7/8/2025, 10:56:45 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/317" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/317" ); 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/317"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/317"
)
notification = res.json() Response
{
"id": 317,
"userId": 32,
"type": "mention",
"title": "Roberta Mueller-Yundt mentioned you in a post",
"body": "Atrocitas cernuus desidero.",
"isRead": true,
"link": "https://example.com/mention/DUSGQDRJ",
"createdAt": "2025-07-08T22:56:45.680Z"
}