Activity #169
User #37 attached application/pdf (20418778 bytes)
3/31/2026, 7:52:33 PM
Overview
attachments / #169
User #37 attached application/pdf (20418778 bytes)
3/31/2026, 7:52:33 PM
User #37 attached application/pdf (20418778 bytes)
3/31/2026, 7:52:33 PM
View recordUser #37 attached application/pdf (20418778 bytes) · 3/31/2026, 7:52:33 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/169" ); 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/169"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/169"
)
attachment = res.json() Response
{
"id": 169,
"userId": 37,
"targetType": "comment",
"targetId": 220,
"url": "https://example.com/files/attachment-169.pdf",
"mimeType": "application/pdf",
"sizeBytes": 20418778,
"createdAt": "2026-03-31T19:52:33.945Z"
}