New server Endpoint (note this is different to get params_id):
Code Block |
---|
https://public-survey-data-api.rose.conceptsauce.io/api |
Request body:
Code Block | ||
---|---|---|
| ||
{ "event_type": "survey_data_request", "action": "get_shop_shelf_summary_items_looked_at", "data": { "target": { "survey_id": "SURV01FPWYJF00B84Q5AXVHF25QQ8Z", "respondent_idencoded": "previewenc14367fa406b368698d7dfa3034bda0d005b10eea", "block_id": "con" } } } |
...
Code Block | ||
---|---|---|
| ||
{ "code": 200, "data": { "survey_id": "SURV01FPWYJF00B84Q5AXVHF25QQ8Z", "block_id": "con", "respondent_id": "previewnull", "respondent_encoded": "enc14367fa406b368698d7dfa3034bda0d005b10eea", "items_looked_at": [] }, "event_type": "survey_data_request", "action": "get_shop_shelf_summary_items_looked_at", "client_msg_id": "" } |
respondent_idencoded
is the one passed in the respondent App url as respondent_id
and is retrieved using the Get Respondent Encoded ID step.
block_id
is the same as present in Admin App
Note |
---|
Inside the target , each parameter must be set manually. The provided by |
...