conversations / #139
- title
- —
- isGroup
- false
- createdAt
- updatedAt
Component variants
Medium
#139
#139
Small
conversations/139 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/conversations/139" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/conversations/139"
);
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/139"
);
const conversation = (await res.json()) as Conversation;import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/139"
)
conversation = res.json() {
"id": 139,
"title": null,
"isGroup": false,
"createdAt": "2025-11-12T00:39:58.826Z",
"updatedAt": "2026-03-09T05:54:23.508Z"
}