Activity #471
User #117 attached image/webp (4744664 bytes)
3/13/2026, 12:12:18 PM
Overview
attachments / #471
User #117 attached image/webp (4744664 bytes)
3/13/2026, 12:12:18 PM
User #117 attached image/webp (4744664 bytes)
3/13/2026, 12:12:18 PM
View recordUser #117 attached image/webp (4744664 bytes) · 3/13/2026, 12:12:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/471" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/471" ); 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/471"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/471"
)
attachment = res.json() Response
{
"id": 471,
"userId": 117,
"targetType": "product",
"targetId": 105,
"url": "https://picsum.photos/seed/attachment-471/1200/600",
"mimeType": "image/webp",
"sizeBytes": 4744664,
"createdAt": "2026-03-13T12:12:18.806Z"
}