conversations / #69
- title
- —
- isGroup
- false
- createdAt
- updatedAt
Component variants
Medium
#69
#69
Small
conversations/69 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/conversations/69" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/conversations/69"
);
const conversation = await res.json();import type { Conversation } from "https://example-data.com/types/conversations.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/conversations/69"
);
const conversation = (await res.json()) as Conversation;import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/69"
)
conversation = res.json() {
"id": 69,
"title": null,
"isGroup": false,
"createdAt": "2025-07-04T01:21:06.671Z",
"updatedAt": "2026-01-15T12:59:09.516Z"
}