Activity #465
User #56 attached image/webp (47129289 bytes)
7/15/2025, 2:43:21 PM
Overview
attachments / #465
User #56 attached image/webp (47129289 bytes)
7/15/2025, 2:43:21 PM
User #56 attached image/webp (47129289 bytes)
7/15/2025, 2:43:21 PM
View recordUser #56 attached image/webp (47129289 bytes) · 7/15/2025, 2:43:21 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/465" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/465" ); 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/465"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/465"
)
attachment = res.json() Response
{
"id": 465,
"userId": 56,
"targetType": "product",
"targetId": 142,
"url": "https://picsum.photos/seed/attachment-465/800/800",
"mimeType": "image/webp",
"sizeBytes": 47129289,
"createdAt": "2025-07-15T14:43:21.783Z"
}