Activity #792
User #182 attached image/jpeg (20156904 bytes)
3/21/2026, 8:18:56 AM
Overview
attachments / #792
User #182 attached image/jpeg (20156904 bytes)
3/21/2026, 8:18:56 AM
User #182 attached image/jpeg (20156904 bytes)
3/21/2026, 8:18:56 AM
View recordUser #182 attached image/jpeg (20156904 bytes) · 3/21/2026, 8:18:56 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/792" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/792" ); 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/792"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/792"
)
attachment = res.json() Response
{
"id": 792,
"userId": 182,
"targetType": "product",
"targetId": 90,
"url": "https://picsum.photos/seed/attachment-792/800/800",
"mimeType": "image/jpeg",
"sizeBytes": 20156904,
"createdAt": "2026-03-21T08:18:56.848Z"
}