get_conversation
Retrieve a single conversation by its ID to get its description, visibility, owner, and workspace details. Use when you need conversation metadata, not messages or participants.
Instructions
Get one conversation by ID, with full metadata.
USE WHEN: You have a conversation_id and need its description, visibility, owner or workspace name.
USE INSTEAD: get_conversation_users for the participant list. list_messages with conversation_id for its messages — this returns neither.
FIRST: id comes from list_conversations (field results[].id) — call it first if you don't have one.
EXAMPLE: {"id":"conv-abc"}
RETURNS: {id, name, description?, link, workspace_id, workspace_name, owner_id, type, visibility, ...}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| response_fields | No | Dot-path allowlist to shrink the response, e.g. ["results.id","total"]. Omit for the full payload. |