Activity #442
User #100 attached image/webp (20496562 bytes)
1/22/2026, 7:19:06 PM
Overview
attachments / #442
User #100 attached image/webp (20496562 bytes)
1/22/2026, 7:19:06 PM
User #100 attached image/webp (20496562 bytes)
1/22/2026, 7:19:06 PM
View recordUser #100 attached image/webp (20496562 bytes) · 1/22/2026, 7:19:06 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/442" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/442" ); 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/442"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/442"
)
attachment = res.json() Response
{
"id": 442,
"userId": 100,
"targetType": "product",
"targetId": 114,
"url": "https://picsum.photos/seed/attachment-442/600/800",
"mimeType": "image/webp",
"sizeBytes": 20496562,
"createdAt": "2026-01-22T19:19:06.855Z"
}