Skip to main content
POST
/
api
/
decks
/
{deckId}
/
presentations
Create a presentation
curl --request POST \
  --url https://app.demandiq.com/api/decks/{deckId}/presentations \
  --header 'Content-Type: application/json' \
  --data '
{
  "homeowner": {
    "first_name": "Sarah",
    "address": "123 Main St",
    "city": "Denver",
    "country": "US",
    "last_name": "Johnson",
    "state": "CO",
    "zip": "80202",
    "phone": "+13035551234",
    "email": "sarah@example.com"
  },
  "voice_settings": {
    "voice_id": "<string>",
    "stability": 123,
    "similarity_boost": 123
  },
  "language_settings": {
    "language_code": "en"
  },
  "price_inputs": {
    "roof_squares": 32,
    "system_size_kw": 8.5
  },
  "measurement_strategy": "manual"
}
'
{
  "deck_presentation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "url": "https://app.demandiq.com/p/abc123",
  "status": "not_started"
}

Path Parameters

deckId
string<uuid>
required

Deck ID

Body

application/json
homeowner
object
required
voice_settings
object
language_settings
object
price_inputs
object

Variable values for pricing formula evaluation

Example:
{ "roof_squares": 32, "system_size_kw": 8.5 }
measurement_strategy
enum<string>
default:manual
Available options:
auto,
immediate,
manual

Response

Presentation created

deck_presentation_id
string<uuid>
url
string
Example:

"https://app.demandiq.com/p/abc123"

status
enum<string>
Available options:
not_started,
pending