conversations / #168
- title
- —
- isGroup
- false
- createdAt
- updatedAt
Component variants
Medium
#168
#168
Small
conversations/168 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/conversations/168" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/conversations/168"
);
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/168"
);
const conversation = (await res.json()) as Conversation;import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/168"
)
conversation = res.json() {
"id": 168,
"title": null,
"isGroup": false,
"createdAt": "2026-01-15T08:20:12.597Z",
"updatedAt": "2026-04-15T13:24:45.577Z"
}