Google Super

GOOGLESUPER_LIST_FILE_LABELS

Tool to list the labels on a file. Use when you need to retrieve all labels associated with a specific file in Google Drive.

Remote googlesuper

Other tools also called GOOGLESUPER_LIST_FILE_LABELS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "file_id": {
      "type": "string",
      "title": "File Id",
      "examples": [
        "1aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789"
      ],
      "description": "The ID of the file."
    },
    "page_token": {
      "type": "string",
      "title": "Page Token",
      "default": null,
      "nullable": true,
      "description": "Token to retrieve a specific page of results."
    },
    "max_results": {
      "type": "integer",
      "title": "Max Results",
      "default": null,
      "maximum": 100,
      "minimum": 1,
      "nullable": true,
      "description": "The maximum number of labels to return per page. Default is 100."
    }
  }
}