Activity #505
User #203 attached image/webp (8265051 bytes)
6/30/2025, 6:40:43 PM
Overview
attachments / #505
User #203 attached image/webp (8265051 bytes)
6/30/2025, 6:40:43 PM
User #203 attached image/webp (8265051 bytes)
6/30/2025, 6:40:43 PM
View recordUser #203 attached image/webp (8265051 bytes) · 6/30/2025, 6:40:43 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/505" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/505" ); 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/505"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/505"
)
attachment = res.json() Response
{
"id": 505,
"userId": 203,
"targetType": "product",
"targetId": 43,
"url": "https://picsum.photos/seed/attachment-505/800/400",
"mimeType": "image/webp",
"sizeBytes": 8265051,
"createdAt": "2025-06-30T18:40:43.747Z"
}