GET /v1/conversation-folders
Auth: tenant — _Status:_ stable
List the tenant's conversation folders, ordered by position then name.
Request
No query parameters.
curl -H "Authorization: Bearer atr_…" \
http://arbiter.example.com/v1/conversation-folders
Response
200 OK
{
"count": 1,
"folders": [
{
"id": 3,
"tenant_id": 1,
"name": "Research",
"position": 0,
"created_at": 1777088000,
"updated_at": 1777088000
}
]
}
Field schemas: Data model → ConversationFolder.
Failure modes
| Status | When | Body |
|---|---|---|
| 401 | Missing / invalid bearer; tenant disabled. | {"error": "..."} |