PPTX Builder API
PPTX BuilderBook a demoAccount
v2
v2
  • Introduction
  • Guide
    • Create account
    • Get API Token
    • Webhook
    • Preparing Slides
  • Concepts
    • Intro
    • Slide Masters
    • Slide Layouts
    • Placeholders
    • Slide
  • API Reference
    • Authentication
    • JSON to PPTX Builder
      • Request Payload
        • Base Settings
        • Custom Settings
        • Global Chart Settings
        • Slide Settings
        • Chart Settings
          • Chart View Settings
        • Columns
        • Rows
        • Significance Test
        • Chart Title
    • JSON to PPTX
    • Append slide
      • Request Payload
    • Upload template
  • Fonts
  • Chart Types
  • Data Labels
  • Legend
  • Chart Specific Settings
  • Examples
    • JSON to PPTX Builder
    • API Token
    • Append slide
    • More examples
Powered by GitBook
On this page

Was this helpful?

  1. API Reference

Append slide

This endpoint can be used to add a slide to an existing presentation created by the `JSON to PPTX Builder` request.

Append slide

PUT https://api.pptxbuilder.com/api/v2/append-slide

This endpoint allows you to append a slide into an existing presentation.

Query Parameters

Name
Type
Description

token

string

The project token returned by the API upon creation.

Headers

Name
Type
Description

Authentication

string

Bearer <token>

Request Body

Name
Type
Description

body

object

Slide JSON Object.

{    "name": "Cake's name",    "recipe": "Cake's recipe name",    "cake": "Binary cake"}
{    "message": "Ain't no cake like that."}

PreviousJSON to PPTXNextRequest Payload

Last updated 3 years ago

Was this helpful?