Sign in

Batch update presentation

documented

Applies one or more updates to the presentation in a single batch request.

POST /v1/presentations/{presentationId}:batchUpdatePresentationsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://slides.googleapis.com/v1/presentations/{{$presentationId}}:batchUpdate?key={{SLIDES_API_KEY}}" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"requests":[{"createSlide":{"insertionIndex":{{$insertionIndex}},"objectId":"{{$newSlideId}}"}},{"createShape":{"objectId":"{{$shapeId}}","shapeType":"TEXT_BOX","elementProperties":{"pageObjectId":"{{$newSlideId}}"}}},{"insertText":{"objectId":"{{$shapeId}}","text":"{{$text}}"}}]}'
Batch update presentation · Google Slides · OpenIntegrations