Activity #436
User #188 attached image/jpeg (2830295 bytes)
9/20/2025, 6:16:14 AM
Overview
attachments / #436
User #188 attached image/jpeg (2830295 bytes)
9/20/2025, 6:16:14 AM
User #188 attached image/jpeg (2830295 bytes)
9/20/2025, 6:16:14 AM
View recordUser #188 attached image/jpeg (2830295 bytes) · 9/20/2025, 6:16:14 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/436" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/436" ); 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/436"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/436"
)
attachment = res.json() Response
{
"id": 436,
"userId": 188,
"targetType": "product",
"targetId": 8,
"url": "https://picsum.photos/seed/attachment-436/800/600",
"mimeType": "image/jpeg",
"sizeBytes": 2830295,
"createdAt": "2025-09-20T06:16:14.370Z"
}