Activity #748
User #215 attached image/webp (47419465 bytes)
4/30/2026, 9:46:16 PM
Overview
attachments / #748
User #215 attached image/webp (47419465 bytes)
4/30/2026, 9:46:16 PM
User #215 attached image/webp (47419465 bytes)
4/30/2026, 9:46:16 PM
View recordUser #215 attached image/webp (47419465 bytes) · 4/30/2026, 9:46:16 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/748" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/748" ); 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/748"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/748"
)
attachment = res.json() Response
{
"id": 748,
"userId": 215,
"targetType": "product",
"targetId": 7,
"url": "https://picsum.photos/seed/attachment-748/600/300",
"mimeType": "image/webp",
"sizeBytes": 47419465,
"createdAt": "2026-04-30T21:46:16.840Z"
}