Api / Conversations

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 paramTypeDescription
idintConversation 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

StatusWhenBody
401Missing / invalid bearer.{"error": "..."}
404Id doesn't exist or belongs to another tenant.{"error": "conversation not found"}

See also