Activity #716
User #130 attached image/jpeg (45780005 bytes)
11/5/2025, 3:36:08 PM
Overview
attachments / #716
User #130 attached image/jpeg (45780005 bytes)
11/5/2025, 3:36:08 PM
User #130 attached image/jpeg (45780005 bytes)
11/5/2025, 3:36:08 PM
View recordUser #130 attached image/jpeg (45780005 bytes) · 11/5/2025, 3:36:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/716" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/716" ); 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/716"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/716"
)
attachment = res.json() Response
{
"id": 716,
"userId": 130,
"targetType": "product",
"targetId": 57,
"url": "https://picsum.photos/seed/attachment-716/400/400",
"mimeType": "image/jpeg",
"sizeBytes": 45780005,
"createdAt": "2025-11-05T15:36:08.657Z"
}