Activity #499
User #177 attached image/jpeg (13336392 bytes)
10/14/2025, 2:16:23 PM
Overview
attachments / #499
User #177 attached image/jpeg (13336392 bytes)
10/14/2025, 2:16:23 PM
User #177 attached image/jpeg (13336392 bytes)
10/14/2025, 2:16:23 PM
View recordUser #177 attached image/jpeg (13336392 bytes) · 10/14/2025, 2:16:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/499" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/499" ); 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/499"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/499"
)
attachment = res.json() Response
{
"id": 499,
"userId": 177,
"targetType": "product",
"targetId": 49,
"url": "https://picsum.photos/seed/attachment-499/1200/800",
"mimeType": "image/jpeg",
"sizeBytes": 13336392,
"createdAt": "2025-10-14T14:16:23.139Z"
}