MCP
structure:reorderRows
Reorders the rows.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sheet | string | yes | — |
fromRow | integer | yes | — |
count | integer | no | Defaults to 1. |
toRow | integer | 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"
},
"fromRow": {
"type": "integer",
"format": "uint32",
"minimum": 0
},
"count": {
"type": "integer",
"format": "uint32",
"minimum": 0,
"default": 1
},
"toRow": {
"type": "integer",
"format": "uint32",
"minimum": 0
}
},
"required": [
"sheet",
"fromRow",
"toRow"
]
}