Debriefer

Present content to a participant

Presents a blueprint node's content (form, stimulus, or custom) to the participant. Records the presentation in the timeline. Run must be active.

POST
/api/v1/interview-runs/{id}/present

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://loading/api/v1/interview-runs/run_1234567890abcdef/present" \  -H "Content-Type: application/json" \  -d '{    "node_id": "string"  }'
{
  "object": "content_presented",
  "run_id": "string",
  "node_id": "string",
  "node_type": "question",
  "content": {
    "property1": null,
    "property2": null
  }
}
Empty
Empty
Empty