Activity #237
User #41 attached application/pdf (8443735 bytes)
2/9/2026, 12:55:44 AM
Overview
attachments / #237
User #41 attached application/pdf (8443735 bytes)
2/9/2026, 12:55:44 AM
User #41 attached application/pdf (8443735 bytes)
2/9/2026, 12:55:44 AM
View recordUser #41 attached application/pdf (8443735 bytes) · 2/9/2026, 12:55:44 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/237" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/237" ); 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/237"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/237"
)
attachment = res.json() Response
{
"id": 237,
"userId": 41,
"targetType": "post",
"targetId": 62,
"url": "https://example.com/files/attachment-237.pdf",
"mimeType": "application/pdf",
"sizeBytes": 8443735,
"createdAt": "2026-02-09T00:55:44.242Z"
}