Google Super
GOOGLESUPER_COPY_DOCUMENT
Tool to create a copy of an existing Google Document. Use this to duplicate a document, for example, when using an existing document as a template. The copied document will have a default title (e.g., 'Copy of [original title]') if no new title is provided, and will be placed in the user's root Google Drive folder.
Remote googlesuper
Other tools also called GOOGLESUPER_COPY_DOCUMENT?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"default": null,
"examples": [
"My New Document Title"
],
"nullable": true,
"description": "The title for the new copied document. If not provided, the title will be 'Copy of [original document's title]'."
},
"document_id": {
"type": "string",
"title": "Document Id",
"examples": [
"1a2b3c-example-document-id"
],
"description": "The ID of the Google Document to be copied."
}
}
}