getSheetData
Retrieve specific sheet data from a Google Spreadsheet using its URL and sheet name to enable direct data access for analysis or integration.
Instructions
スプレッドシートの特定シートのデータを取得
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sheetName | Yes | 取得するシート名 | |
url | Yes | スプレッドシートのURL |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sheetName": {
"description": "取得するシート名",
"type": "string"
},
"url": {
"description": "スプレッドシートのURL",
"type": "string"
}
},
"required": [
"url",
"sheetName"
],
"type": "object"
}