Skip to content
v0.3

inventory.release

Release an active hold, returning its reserved units to availability. Idempotent (no-op if not active).

  • Scope: inventory.reserve
  • System: no
  • Reachable from: POST /v1/commands/inventory.release (tenant credential) · MCP tool inventory.release · SDK client.call('inventory.release', …)
  • Events: inventory.released
{
"properties": {
"reservation_id": {
"minLength": 1,
"type": "string"
}
},
"required": [
"reservation_id"
],
"type": "object"
}
{
"additionalProperties": false,
"properties": {
"reservation_id": {
"type": "string"
},
"status": {
"type": "string"
}
},
"required": [
"reservation_id",
"status"
],
"type": "object"
}

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