Survicate · Example Payload

Survey Response Example

SurveysCustomer FeedbackNPSUser ResearchFeedback AnalyticsCRM IntegrationCustomer Experience

Survey Response Example is an example object payload from Survicate, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

idsurvey_idrespondent_idcompleted_atanswers

Example Payload

Raw ↑
{
  "id": "resp_xyz789",
  "survey_id": "survey_abc123",
  "respondent_id": "respondent_111aaa",
  "completed_at": "2025-06-10T15:23:45Z",
  "answers": [
    {
      "question_id": "q_001",
      "value": 9,
      "answer_ids": []
    },
    {
      "question_id": "q_002",
      "value": "The onboarding process was smooth and the support team was very helpful.",
      "answer_ids": []
    },
    {
      "question_id": "q_003",
      "value": null,
      "answer_ids": ["ans_option_a", "ans_option_c"]
    }
  ]
}