Activity #755
User #242 attached image/png (39400783 bytes)
3/30/2026, 10:03:30 PM
Overview
attachments / #755
User #242 attached image/png (39400783 bytes)
3/30/2026, 10:03:30 PM
User #242 attached image/png (39400783 bytes)
3/30/2026, 10:03:30 PM
View recordUser #242 attached image/png (39400783 bytes) · 3/30/2026, 10:03:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/755" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/755" ); 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/755"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/755"
)
attachment = res.json() Response
{
"id": 755,
"userId": 242,
"targetType": "product",
"targetId": 71,
"url": "https://picsum.photos/seed/attachment-755/600/600",
"mimeType": "image/png",
"sizeBytes": 39400783,
"createdAt": "2026-03-30T22:03:30.707Z"
}