Activity #775
User #246 attached image/webp (47276834 bytes)
9/22/2025, 8:58:00 AM
Overview
attachments / #775
User #246 attached image/webp (47276834 bytes)
9/22/2025, 8:58:00 AM
User #246 attached image/webp (47276834 bytes)
9/22/2025, 8:58:00 AM
View recordUser #246 attached image/webp (47276834 bytes) · 9/22/2025, 8:58:00 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/775" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/775" ); 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/775"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/775"
)
attachment = res.json() Response
{
"id": 775,
"userId": 246,
"targetType": "product",
"targetId": 188,
"url": "https://picsum.photos/seed/attachment-775/1200/300",
"mimeType": "image/webp",
"sizeBytes": 47276834,
"createdAt": "2025-09-22T08:58:00.415Z"
}