Skip to main content
POST
/
api
/
presentations
/
{presentationId}
/
events
Ingest presentation event
curl --request POST \
  --url https://app.demandiq.com/api/presentations/{presentationId}/events \
  --header 'Content-Type: application/json' \
  --data '
{
  "_token": "<string>",
  "type": "slide_viewed"
}
'
{
  "success": true,
  "error": "<string>"
}

Path Parameters

presentationId
string<uuid>
required

Presentation ID

Body

application/json
_token
string
required

HMAC authentication token

type
enum<string>

Event type. Omit for Q&A log events.

Available options:
slide_viewed,
cta_clicked,
presentation_opened,
action_detection,
action_execution

Response

Event recorded

success
boolean
error
string | null