Skip to main content
POST
/
api
/
v1
/
ppt
/
presentation
/
create
/
from-json
/
async
Create Presentation From Json Async
curl --request POST \
  --url https://api.presenton.ai/api/v1/ppt/presentation/create/from-json/async \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "language": "English",
  "title": "<string>",
  "template": "general",
  "theme": "<string>",
  "slides": [],
  "export_as": "pptx",
  "trigger_webhook": false
}'
{
  "id": "<string>",
  "status": "<string>",
  "message": "<string>",
  "error": {},
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "data": {}
}

Headers

Authorization
string
required

Body

application/json
language
string
default:English
title
string | null
template
string
default:general
theme
string | null
slides
CreateSlideFromJsonRequest · object[]
export_as
enum<string>
default:pptx
Available options:
pptx,
pdf
trigger_webhook
boolean
default:false

Response

status
string
required
id
string
message
string | null
error
object | null
created_at
string<date-time>
updated_at
string<date-time>
data
object | null