Google Drive
GOOGLEDRIVE_COPY_FILE
Duplicates an existing file in google drive, identified by its `file id`.
Remote googledrive
Other tools also called GOOGLEDRIVE_COPY_FILE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"file_id": {
"type": "string",
"title": "File Id",
"examples": [
"1A2b3C4d5E6fG7h8I9j0KlMNOPqRstUVW",
"0X1a2B3c4D5e6F7g8H9i0JkLmNoPqRsTu"
],
"description": "The unique identifier for the file on Google Drive that you want to copy. This ID can be retrieved from the file's shareable link or via other Google Drive API calls."
},
"new_title": {
"type": "string",
"title": "New Title",
"default": null,
"examples": [
"Copy of Quarterly Report",
"Duplicate of Project Plan"
],
"nullable": true,
"description": "The title to assign to the new copy of the file. If not provided, the copied file will have the same title as the original, prefixed with 'Copy of '."
}
}
}