Activity #472
User #209 attached application/pdf (10267785 bytes)
11/15/2025, 4:25:32 PM
Overview
attachments / #472
User #209 attached application/pdf (10267785 bytes)
11/15/2025, 4:25:32 PM
User #209 attached application/pdf (10267785 bytes)
11/15/2025, 4:25:32 PM
View recordUser #209 attached application/pdf (10267785 bytes) · 11/15/2025, 4:25:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/472" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/472" ); const attachment = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/attachments.d.ts https://example-data.com/types/attachments.d.ts
import type { Attachment } from "./types/attachments";
const res = await fetch(
"https://example-data.com/api/v1/attachments/472"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/472"
)
attachment = res.json() Response
{
"id": 472,
"userId": 209,
"targetType": "post",
"targetId": 356,
"url": "https://example.com/files/attachment-472.pdf",
"mimeType": "application/pdf",
"sizeBytes": 10267785,
"createdAt": "2025-11-15T16:25:32.613Z"
}