This document presents a set of code samples and codelabs that demonstrate how to translate an intended Google Slides action into an Google Slides API request.
Code samples
The code samples listed in this section demonstrate how to express common actions in Slides as Slides API requests.
These samples are presented as HTTP requests to be language neutral. To learn how to implement Slides API request protocols in a specific language using Google API client libraries, see the following guides:
- Create a slide
- Add shapes and text to a slide
- Merge data into a presentation
- Add charts to a slide
- Edit and style text
The code samples in this section are divided into the following categories:
- Basic reading: Samples that show common ways of reading information from a presentation
- Basic writing: Samples that show common ways of writing to a presentation
- Element operations: Samples that show common page element creation and editing tasks
- Presentation operations: Samples that show how to create and manipulate a presentation
- Slide operations: Samples that show how to create, move, and delete slides in a presentation
- Table operations: Samples that show how to create and edit tables within a slide
- Transform operations: Samples that show how to alter the size and positioning of elements within a slide
Codelab
The Slides codelab teaches you how to use the Slides API as a custom presentation tool for an analysis of the most common software licenses.
You'll learn how to query all open source code on GitHub using BigQuery and create a slide deck using Slides API to present your results.
Best practices
There's often more than one way to complete a given task with the
Slides API. Use the batch method
presentations.batchUpdate
wherever possible to bundle multiple update requests into a single method call.
This reduces client HTTP overhead, reduces the number of queries, minimizes the
number of revisions on the presentation, and applies all the changes atomically.
To further improve performance, use field masks when reading and updating presentations, pages, and page elements.