Activity #630
User #11 attached image/jpeg (43366433 bytes)
2/12/2026, 7:59:32 AM
Overview
attachments / #630
User #11 attached image/jpeg (43366433 bytes)
2/12/2026, 7:59:32 AM
User #11 attached image/jpeg (43366433 bytes)
2/12/2026, 7:59:32 AM
View recordUser #11 attached image/jpeg (43366433 bytes) · 2/12/2026, 7:59:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/630" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/630" ); 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/630"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/630"
)
attachment = res.json() Response
{
"id": 630,
"userId": 11,
"targetType": "product",
"targetId": 167,
"url": "https://picsum.photos/seed/attachment-630/600/400",
"mimeType": "image/jpeg",
"sizeBytes": 43366433,
"createdAt": "2026-02-12T07:59:32.998Z"
}