Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejson
{
  "event_type": "survey_data_request",
  "action": "get_shop_shelf_summary_purchases",
  "data": {
    "target": {
      "survey_id": "SURV01FNR7YQ7T01GJACN4P90ZCBRG",
      "respondent_idencoded": "preview",
      "block_id": "shelf"
   }
  }
}

...

Code Block
languagejson
{
	"code": 200,
	"data": {
		"survey_id": "SURV01FPWYJF00B84Q5AXVHF25QQ8Z",
		"block_id": "con",
		"respondent_id": "null",
		"respondent_encoded": "previewenc14367fa406b368698d7dfa3034bda0d005b10eea",
		"basket_summary": {
			"total_unique_sku": 0,
			"total_value": 0.0,
			"sku_list": ""
		}
	},
	"event_type": "survey_data_request",
	"action": "get_shop_shelf_summary_purchases",
	"client_msg_id": ""
}

respondent_idencoded is the one passed in via the respondent App url as respondent_id

block_id is the same as present in Admin App

Note

Inside the target , each parameter must be set manually. The provided by me survey_id, respondent_idencoded and block_id ARE ONLY EXAMPLES here.

Info

If the specified value is invalid, response for such a request will be with code: 802 (which means: No data available for specified target)

...