create_slide
Add a new slide to your Google Slides presentation by specifying the presentation ID and optional position for insertion.
Instructions
Create a new slide in a Google Slides presentation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
insertionIndex | No | Position where to insert the slide (optional, defaults to 0) | |
presentationId | Yes | The ID of the Google Slides presentation |
Input Schema (JSON Schema)
{
"properties": {
"insertionIndex": {
"description": "Position where to insert the slide (optional, defaults to 0)",
"type": "number"
},
"presentationId": {
"description": "The ID of the Google Slides presentation",
"type": "string"
}
},
"required": [
"presentationId"
],
"type": "object"
}