quorum_list
- Category: quorum
- Access: read
- Audience: advanced (ordinary users do not normally call this directly)
Purpose
Lists quorums the caller may see, optionally narrowed by project or standing. Call it to survey agreements before resolving, cancelling, or attaching lanes.
Arguments
Optional: limit, project, status.
-
limit. -
project. -
status.
Result
JSON object with quorums (entries carrying quorum_id, project, status, primary_topic_id, created_by, created and resolved stamps) and count.
Boundaries
Project scope AND participation filter silently; inaccessible quorums are omitted with no marker (conductor and star principals see all). Operates only inside the caller's profile boundary.
Lifecycle / side effects
Read-only. No standing changes and no history is recorded.
Errors
Unknown status values match nothing (empty result, no error). Unknown arguments are rejected. Limit is clamped to 1..100.
Example
{
"limit": 20,
"status": "open"
}
Result shape:
{
"count": 1,
"quorums": [
{
"primary_topic_id": "<uuid>",
"project": "shared-ops",
"quorum_id": "<uuid>",
"status": "open"
}
]
}
See also
quorum_create, quorum_resolve, lane_list, debate_work_queue, inbound_list.