get_presentation
Retrieve detailed information about a Google Slides presentation, including title, slide count, and metadata. Requires user email and presentation ID for access.
Instructions
Get details about a Google Slides presentation.
Args: user_google_email (str): The user's Google email address. Required. presentation_id (str): The ID of the presentation to retrieve.
Returns: str: Details about the presentation including title, slides count, and metadata.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
presentation_id | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"presentation_id": {
"title": "Presentation Id",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"user_google_email",
"presentation_id"
],
"type": "object"
}