inventory.commit
Commit an active hold: consume the physical stock (on_hand and reserved both drop). Idempotent.
- Scope:
inventory.reserve - System: no
- Reachable from:
POST /v1/commands/inventory.commit(tenant credential) · MCP toolinventory.commit· SDKclient.call('inventory.commit', …) - Events:
inventory.committed
Input (JSON Schema)
Section titled “Input (JSON Schema)”{ "properties": { "reservation_id": { "minLength": 1, "type": "string" } }, "required": [ "reservation_id" ], "type": "object"}Result (200)
Section titled “Result (200)”{ "additionalProperties": false, "properties": { "reservation_id": { "type": "string" }, "status": { "type": "string" } }, "required": [ "reservation_id", "status" ], "type": "object"}Errors
Section titled “Errors”validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)