Activity #573
User #201 attached application/pdf (18578410 bytes)
10/3/2025, 5:14:08 AM
Overview
attachments / #573
User #201 attached application/pdf (18578410 bytes)
10/3/2025, 5:14:08 AM
User #201 attached application/pdf (18578410 bytes)
10/3/2025, 5:14:08 AM
View recordUser #201 attached application/pdf (18578410 bytes) · 10/3/2025, 5:14:08 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/573" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/573" ); 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/573"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/573"
)
attachment = res.json() Response
{
"id": 573,
"userId": 201,
"targetType": "product",
"targetId": 71,
"url": "https://example.com/files/attachment-573.pdf",
"mimeType": "application/pdf",
"sizeBytes": 18578410,
"createdAt": "2025-10-03T05:14:08.773Z"
}