GET/v1/conversations/:id
Auth: tenant — Status: stable
Fetch one conversation's metadata. Use GET/v1/conversations/:id/messages for the message history.
Request
| Path param | Type | Description |
|---|---|---|
id | int | Conversation id. |
curl -H "Authorization: Bearer atr_…" \
http://arbiter.example.com/v1/conversations/1
Response
200 OK
The Conversation object. Field schemas: Data model → Conversation.
Failure modes
| Status | When | Body |
|---|---|---|
| 401 | Missing / invalid bearer. | {"error": "..."} |
| 404 | Id doesn't exist or belongs to another tenant. | {"error": "conversation not found"} |