MCP
structure:reorderColumns
Reorders the columns.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sheet | string | yes | — |
fromColumn | string | yes | — |
count | integer | no | Defaults to 1. |
toColumn | string | yes | — |
Returns
Nothing beyond the standard MCP success envelope.
Schema
Request payload, as JSON Schema:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Payload",
"type": "object",
"properties": {
"sheet": {
"type": "string"
},
"fromColumn": {
"type": "string"
},
"count": {
"type": "integer",
"format": "uint32",
"minimum": 0,
"default": 1
},
"toColumn": {
"type": "string"
}
},
"required": [
"sheet",
"fromColumn",
"toColumn"
]
}