Tool details
| Field | Value |
|---|---|
| Name | sheets__write_range |
| Group | Integrations |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"spreadsheetId": {
"type": "string",
"description": "Google Sheets spreadsheet ID"
},
"range": {
"type": "string",
"description": "A1 notation range to write"
},
"valueInputOption": {
"type": "string",
"description": "How input values can be interpreted"
},
"includeValuesInResponse": {
"type": "boolean",
"description": "Whether the response can include written values"
},
"values": {
"type": "array",
"description": "2D array of row values to write"
},
"majorDimension": {
"type": "string",
"description": "Major dimension of provided values"
}
},
"required": [
"spreadsheetId",
"range",
"values"
],
"description": "Input schema for the sheets__write_range tool."
}