POST /v1/conversation-folders

Auth: tenant — _Status:_ stable

Create a named conversation folder for the tenant.

Request

Body

FieldTypeRequiredDescription
namestringyesDisplay name (non-empty).
curl -X POST \
  -H "Authorization: Bearer atr_…" \
  -H "Content-Type: application/json" \
  -d '{"name":"Research"}' \
  http://arbiter.example.com/v1/conversation-folders

Response

201 Created

The new ConversationFolder object. Field schemas: Data model → ConversationFolder.

Failure modes

StatusWhenBody
400Body isn't a JSON object; name missing/empty.{"error": "..."}
401Missing / invalid bearer; tenant disabled.{"error": "..."}

See also