Skip to content
v0.3

order.mark_paid

Mark an order paid (pending_payment -> paid), committing its reservation. Idempotent by state (a re-paid order is a success no-op).

  • Scope: order.write
  • System: no
  • Reachable from: POST /v1/commands/order.mark_paid (tenant credential) · MCP tool order.mark_paid · SDK client.call('order.mark_paid', …)
  • Events: order.paid, inventory.committed, order.stock_uncommitted
{
"properties": {
"order_id": {
"minLength": 1,
"type": "string"
}
},
"required": [
"order_id"
],
"type": "object"
}
{
"additionalProperties": false,
"properties": {
"order_id": {
"type": "string"
},
"status": {
"type": "string"
}
},
"required": [
"order_id",
"status"
],
"type": "object"
}

validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)