Activity #103
User #119 attached image/webp (23872746 bytes)
11/19/2025, 9:28:42 AM
Overview
attachments / #103
User #119 attached image/webp (23872746 bytes)
11/19/2025, 9:28:42 AM
User #119 attached image/webp (23872746 bytes)
11/19/2025, 9:28:42 AM
View recordUser #119 attached image/webp (23872746 bytes) · 11/19/2025, 9:28:42 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/103" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/103" ); 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/103"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/103"
)
attachment = res.json() Response
{
"id": 103,
"userId": 119,
"targetType": "restaurant",
"targetId": 4,
"url": "https://picsum.photos/seed/attachment-103/600/300",
"mimeType": "image/webp",
"sizeBytes": 23872746,
"createdAt": "2025-11-19T09:28:42.497Z"
}