Activity #764
User #189 attached image/webp (48532076 bytes)
5/31/2025, 1:21:18 AM
Overview
attachments / #764
User #189 attached image/webp (48532076 bytes)
5/31/2025, 1:21:18 AM
User #189 attached image/webp (48532076 bytes)
5/31/2025, 1:21:18 AM
View recordUser #189 attached image/webp (48532076 bytes) · 5/31/2025, 1:21:18 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/764" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/764" ); 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/764"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/764"
)
attachment = res.json() Response
{
"id": 764,
"userId": 189,
"targetType": "product",
"targetId": 93,
"url": "https://picsum.photos/seed/attachment-764/1200/800",
"mimeType": "image/webp",
"sizeBytes": 48532076,
"createdAt": "2025-05-31T01:21:18.520Z"
}