composition.move
Move a block instance to another slot/position (keeps its id, config and hidden state; revalidates the destination against the block’s rules).
- Scope:
composition.write - System: no
- Reachable from:
POST /v1/commands/composition.move(tenant credential) · MCP toolcomposition.move· SDKclient.call('composition.move', …) - Events:
composition.updated
Input (JSON Schema)
Section titled “Input (JSON Schema)”{ "properties": { "placement_id": { "minLength": 1, "type": "string" }, "position": { "maximum": 9007199254740991, "minimum": -9007199254740991, "type": "integer" }, "slot": { "pattern": "^(storefront|admin):[a-z0-9_.]+$", "type": "string" }, "store": { "minLength": 1, "type": "string" } }, "required": [ "store", "placement_id", "slot" ], "type": "object"}Result (200)
Section titled “Result (200)”{ "additionalProperties": false, "properties": { "placement_id": { "type": "string" } }, "required": [ "placement_id" ], "type": "object"}Errors
Section titled “Errors”validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)