JSON

يُنتج تصدير بيانات JSON ملفًا بتنسيق JSON يحتوي على التعريف التالي الذي يمكنك إعادة استخدامه في أي endpoint أو كود يمكنه قراءة JSON.

{
  "surveyId": "yoursurveyid",
  "respondents": [
    {
      "id": "respondent1",
      "startDate": "2020-09-09T21:37:19.800Z",
      "endDate": "2020-09-09T21:37:25.460Z",
      "ip": "190.0.0.1",
      "lang": null,
      "answers": {
        "q_question": "respondent question answer",
        "f_fieldanswer": "respondent text entry",
      }
    },
    {
      "id": "respondent2",
      "startDate": "2020-09-10T05:07:48.377Z",
      "endDate": "2020-09-10T05:41:18.877Z",
      "ip": "190.0.0.1",
      "lang": null,
      "answers": {
        "q_question": "respondent question answer",
        "f_fieldanswer": "respondent text entry",
      }
    }
}

Last updated

Was this helpful?