Activity #744
User #22 attached image/png (23534475 bytes)
9/18/2025, 9:27:46 AM
Overview
attachments / #744
User #22 attached image/png (23534475 bytes)
9/18/2025, 9:27:46 AM
User #22 attached image/png (23534475 bytes)
9/18/2025, 9:27:46 AM
View recordUser #22 attached image/png (23534475 bytes) · 9/18/2025, 9:27:46 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/744" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/744" ); 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/744"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/744"
)
attachment = res.json() Response
{
"id": 744,
"userId": 22,
"targetType": "product",
"targetId": 165,
"url": "https://picsum.photos/seed/attachment-744/1200/300",
"mimeType": "image/png",
"sizeBytes": 23534475,
"createdAt": "2025-09-18T09:27:46.176Z"
}