New server Endpoint (note this is different to get params_id):
https://public-survey-data-api.rose.conceptsauce.io/api
Request body:
{ "event_type": "get_data_request", "action": "get_conjoint_shelf_version_summary", "data": { "target": { "survey_id": "SURV01FPWYJF00B84Q5AXVHF25QQ8Z", "block_id": "shelf", "respondent_id": "preview" } } }
Response:
{ "code": 200, "data": { "survey_id": "SURV01FPWYJF00B84Q5AXVHF25QQ8Z", "block_id": "con", "respondent_id": "preview", "version_id": "1", "tasks": [ { "task_id": "1", "sku_selected": "B1014", "time_to_select": "5393.0", "purchase_price": 5.0, "relative_selection_time": "5393.0" } ] }, "event_type": "get_data_request", "action": "get_conjoint_shelf_version_summary", "client_msg_id": "" }
One should mostly be interested in the tasks
list. It's a list of products selected for each conjoint task.
time_to_select
is time in milliseconds, since the previous selection (or since the block started, in the case of the first
product).
relative_selection_time
is always time in milliseconds since the block started.