Activity #467
User #35 attached image/webp (49682647 bytes)
3/10/2026, 5:49:39 PM
Overview
attachments / #467
User #35 attached image/webp (49682647 bytes)
3/10/2026, 5:49:39 PM
User #35 attached image/webp (49682647 bytes)
3/10/2026, 5:49:39 PM
View recordUser #35 attached image/webp (49682647 bytes) · 3/10/2026, 5:49:39 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/467" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/467" ); 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/467"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/467"
)
attachment = res.json() Response
{
"id": 467,
"userId": 35,
"targetType": "product",
"targetId": 35,
"url": "https://picsum.photos/seed/attachment-467/800/300",
"mimeType": "image/webp",
"sizeBytes": 49682647,
"createdAt": "2026-03-10T17:49:39.654Z"
}