Activity #1827
User #137 mention Roberta Mueller-Yundt mentioned you in a post
5/26/2025, 5:48:32 AM
Overview
notifications / #1827
User #137 mention Roberta Mueller-Yundt mentioned you in a post
5/26/2025, 5:48:32 AM
User #137 mention Roberta Mueller-Yundt mentioned you in a post
5/26/2025, 5:48:32 AM
View recordUser #137 mention Roberta Mueller-Yundt mentioned you in a post · 5/26/2025, 5:48:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1827" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1827" ); 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/1827"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1827"
)
notification = res.json() Response
{
"id": 1827,
"userId": 137,
"type": "mention",
"title": "Roberta Mueller-Yundt mentioned you in a post",
"body": "Ceno sint solus victus cado.",
"isRead": true,
"link": null,
"createdAt": "2025-05-26T05:48:32.992Z"
}