Activity #273
User #181 attached image/jpeg (16421889 bytes)
1/21/2026, 6:01:08 AM
Overview
attachments / #273
User #181 attached image/jpeg (16421889 bytes)
1/21/2026, 6:01:08 AM
User #181 attached image/jpeg (16421889 bytes)
1/21/2026, 6:01:08 AM
View recordUser #181 attached image/jpeg (16421889 bytes) · 1/21/2026, 6:01:08 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/273" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/273" ); 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/273"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/273"
)
attachment = res.json() Response
{
"id": 273,
"userId": 181,
"targetType": "product",
"targetId": 101,
"url": "https://picsum.photos/seed/attachment-273/800/300",
"mimeType": "image/jpeg",
"sizeBytes": 16421889,
"createdAt": "2026-01-21T06:01:08.770Z"
}