返回 Google Docs
将 Knoon AI 与 Google Docs (Google) 连接以自动化 AI 工作流。
Replace the content in a Google Docs document between startIndex (inclusive) and endIndex (exclusive) with new text.
googleDocsUpdateContentRange
测试版
权限
可选权限
参数
| 名称 | 类型 | 描述 | 必填 |
|---|---|---|---|
| documentId | file | Select the Google Docs document to update. | 是的 |
| startIndex | mustache | Document start index (inclusive) of the range to update. Uses Docs API document index (UTF-16 code units). | 是的 |
| endIndex | mustache | Document end index (exclusive) of the range to update. Must be greater than or equal to startIndex. | 是的 |
| text | mustache | New text to insert at startIndex. If omitted or empty, the specified range will simply be deleted. | 没有 |
回报
| 名称 | 类型 | 描述 |
|---|---|---|
| status | string | UPDATED or ERROR. |
| startIndex | number | The original start index used for the update. |
| oldEndIndex | number | The original end index used for the update. |
| newEndIndex | number | The new end index after inserting the replacement text (startIndex + inserted text length). |
| sensitive.documentId | string | ID of the document that was updated. |