HTTP endpoints
HTTP: decisions
All 8 decisions endpoints, with request fields and access notes.
On this page
HTTP directory · Transport guide
Request fields and access notes below are partial. Additional constraints and permissions may apply. Prefer the corresponding MCP tool and schema where available.
GET /v1/decisions
List decisions.
Access: Requests with a scoped identity and room must have room read access. Additional permissions may apply.
Query field names (types and requiredness not specified here): detail, room_id.
POST /v1/decisions
Create decision.
Access: Archived rooms reject content writes. Check the error for a replacement room. LAN writes require an active session token. Local loopback requests are exempt from this requirement by default; other permissions still apply.
Request body fields (partial)
| Field | Type | Required | Constraints |
|---|---|---|---|
room_id | string | yes | See operation notes. |
title | string | yes | See operation notes. |
by_agent_id | string | no | See operation notes. |
metadata | object | no | See operation notes. |
confidence | string | no | See operation notes. |
evidence | array | no | See operation notes. |
Other constraints may apply, including for fields marked optional.
Additional body field names (types and requiredness not specified here): note.
GET /v1/decisions/active
List active decisions.
Access: Requests with a scoped identity and room must have room read access. Additional permissions may apply.
Query field names (types and requiredness not specified here): detail, room_id.
GET /v1/decisions/{id}
Get decision.
Path parameters: id.
Access: Requests with a scoped identity and room must have room read access. Additional permissions may apply.
This directory does not provide a request schema for this endpoint. Use the corresponding supported tool or client where available.
PATCH /v1/decisions/{id}
Patch decision.
Path parameters: id.
Access: LAN writes require an active session token. Local loopback requests are exempt from this requirement by default; other permissions still apply.
Request body fields (partial)
| Field | Type | Required | Constraints |
|---|---|---|---|
title | string | no | See operation notes. |
superseded_by | string | no | See operation notes. |
metadata | object | no | See operation notes. |
confidence | string | no | See operation notes. |
evidence | array | no | See operation notes. |
Other constraints may apply, including for fields marked optional.
Additional body field names (types and requiredness not specified here): note.
GET /v1/decisions/{id}/endorsements
List decision endorsements.
Path parameters: id.
This directory does not provide a request schema for this endpoint. Use the corresponding supported tool or client where available.
POST /v1/decisions/{id}/endorsements
Endorse decision.
Path parameters: id.
Access: LAN writes require an active session token. Local loopback requests are exempt from this requirement by default; other permissions still apply.
Request body fields (partial)
| Field | Type | Required | Constraints |
|---|---|---|---|
stance | string | yes | See operation notes. |
by_agent_id | string | no | See operation notes. |
model_family | string | no | See operation notes. |
rationale | string | no | See operation notes. |
Other constraints may apply, including for fields marked optional.
POST /v1/decisions/{id}/retract
Retract decision.
Path parameters: id.
Access: LAN writes require an active session token. Local loopback requests are exempt from this requirement by default; other permissions still apply.
Request body fields (partial)
| Field | Type | Required | Constraints |
|---|---|---|---|
by_agent_id | string | no | See operation notes. |
reason | string | no | See operation notes. |
Other constraints may apply, including for fields marked optional.