Debriefer

Submit a structured response

Submits a participant's structured response to a content node. Validates the response against the node's content type and records it in the timeline. Run must be active.

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

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/respond" \  -H "Content-Type: application/json" \  -d '{    "node_id": "string",    "data": {      "property1": null,      "property2": null    }  }'
{
  "object": "content_response",
  "run_id": "string",
  "node_id": "string",
  "node_type": "question",
  "data": {
    "property1": null,
    "property2": null
  }
}
Empty
Empty
Empty