Skip to main content
PUT
/
api
/
slides
/
{slideId}
Update a slide
curl --request PUT \
  --url https://app.demand-iq.com/api/slides/{slideId} \
  --header 'Content-Type: application/json' \
  --cookie session= \
  --data '
{
  "title": "<string>",
  "bullets": [
    "<string>"
  ],
  "narrationScript": "<string>",
  "slideContext": "<string>",
  "audioUrl": "<string>",
  "heroImg": "<string>",
  "orderIndex": 123
}
'
{}

Authorizations

session
string
cookie
required

Session cookie obtained from POST /api/auth/login.

Path Parameters

slideId
string<uuid>
required

UUID of the slide

Body

application/json
title
string
bullets
string[]
narrationScript
string
slideContext
string | null
audioUrl
string
heroImg
string | null
orderIndex
integer

Response

Updated slide

slide
object