Activity #204
User #74 attached application/pdf (45802832 bytes)
1/18/2026, 5:16:43 AM
Overview
attachments / #204
User #74 attached application/pdf (45802832 bytes)
1/18/2026, 5:16:43 AM
User #74 attached application/pdf (45802832 bytes)
1/18/2026, 5:16:43 AM
View recordUser #74 attached application/pdf (45802832 bytes) · 1/18/2026, 5:16:43 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/204" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/204" ); 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/204"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/204"
)
attachment = res.json() Response
{
"id": 204,
"userId": 74,
"targetType": "post",
"targetId": 5,
"url": "https://example.com/files/attachment-204.pdf",
"mimeType": "application/pdf",
"sizeBytes": 45802832,
"createdAt": "2026-01-18T05:16:43.125Z"
}