Activity #138
User #132 attached image/png (45573332 bytes)
2/24/2026, 9:07:15 AM
Overview
attachments / #138
User #132 attached image/png (45573332 bytes)
2/24/2026, 9:07:15 AM
User #132 attached image/png (45573332 bytes)
2/24/2026, 9:07:15 AM
View recordUser #132 attached image/png (45573332 bytes) · 2/24/2026, 9:07:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/138" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/138" ); 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/138"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/138"
)
attachment = res.json() Response
{
"id": 138,
"userId": 132,
"targetType": "product",
"targetId": 145,
"url": "https://picsum.photos/seed/attachment-138/800/400",
"mimeType": "image/png",
"sizeBytes": 45573332,
"createdAt": "2026-02-24T09:07:15.056Z"
}