Activity #354
User #102 attached application/pdf (37874916 bytes)
5/17/2026, 11:16:28 AM
Overview
attachments / #354
User #102 attached application/pdf (37874916 bytes)
5/17/2026, 11:16:28 AM
User #102 attached application/pdf (37874916 bytes)
5/17/2026, 11:16:28 AM
View recordUser #102 attached application/pdf (37874916 bytes) · 5/17/2026, 11:16:28 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/354" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/354" ); 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/354"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/354"
)
attachment = res.json() Response
{
"id": 354,
"userId": 102,
"targetType": "post",
"targetId": 70,
"url": "https://example.com/files/attachment-354.pdf",
"mimeType": "application/pdf",
"sizeBytes": 37874916,
"createdAt": "2026-05-17T11:16:28.490Z"
}