Activity #486
User #156 attached image/webp (31141921 bytes)
4/10/2026, 6:14:52 PM
Overview
attachments / #486
User #156 attached image/webp (31141921 bytes)
4/10/2026, 6:14:52 PM
User #156 attached image/webp (31141921 bytes)
4/10/2026, 6:14:52 PM
View recordUser #156 attached image/webp (31141921 bytes) · 4/10/2026, 6:14:52 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/486" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/486" ); 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/486"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/486"
)
attachment = res.json() Response
{
"id": 486,
"userId": 156,
"targetType": "product",
"targetId": 120,
"url": "https://picsum.photos/seed/attachment-486/800/600",
"mimeType": "image/webp",
"sizeBytes": 31141921,
"createdAt": "2026-04-10T18:14:52.718Z"
}