docs_get_content
Extract and retrieve the content of a Google Doc by specifying its document ID. Designed for AI agents to interact with Google Workspace services efficiently.
Instructions
Get the contents of a Google Doc
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_id | Yes | ID of the document |
Input Schema (JSON Schema)
{
"properties": {
"document_id": {
"description": "ID of the document",
"type": "string"
}
},
"required": [
"document_id"
],
"type": "object"
}