Activity #288
User #59 attached image/webp (19697896 bytes)
5/15/2026, 11:31:02 PM
Overview
attachments / #288
User #59 attached image/webp (19697896 bytes)
5/15/2026, 11:31:02 PM
User #59 attached image/webp (19697896 bytes)
5/15/2026, 11:31:02 PM
View recordUser #59 attached image/webp (19697896 bytes) · 5/15/2026, 11:31:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/288" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/288" ); 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/288"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/288"
)
attachment = res.json() Response
{
"id": 288,
"userId": 59,
"targetType": "product",
"targetId": 187,
"url": "https://picsum.photos/seed/attachment-288/800/600",
"mimeType": "image/webp",
"sizeBytes": 19697896,
"createdAt": "2026-05-15T23:31:02.244Z"
}