diff --git a/apps/web/locales/de-DE.json b/apps/web/locales/de-DE.json index 5a60b1a48d..1c694599bb 100644 --- a/apps/web/locales/de-DE.json +++ b/apps/web/locales/de-DE.json @@ -1596,7 +1596,6 @@ "wait_a_few_seconds_after_the_trigger_before_showing_the_survey": "Warte ein paar Sekunden nach dem Auslöser, bevor Du die Umfrage anzeigst", "waiting_period": "Wartezeit", "welcome_message": "Willkommensnachricht", - "when": "Wenn", "when_conditions_match_waiting_time_will_be_ignored_and_survey_shown": "Wenn die Bedingungen übereinstimmen, wird die Wartezeit ignoriert und die Umfrage angezeigt.", "without_a_filter_all_of_your_users_can_be_surveyed": "Ohne Filter können alle deine Nutzer befragt werden.", "you_have_not_created_a_segment_yet": "Du hast noch keinen Segment erstellt.", diff --git a/apps/web/locales/en-US.json b/apps/web/locales/en-US.json index 90d3f71eda..6ad9cf8c64 100644 --- a/apps/web/locales/en-US.json +++ b/apps/web/locales/en-US.json @@ -1596,7 +1596,6 @@ "wait_a_few_seconds_after_the_trigger_before_showing_the_survey": "Wait a few seconds after the trigger before showing the survey", "waiting_period": "waiting period", "welcome_message": "Welcome message", - "when": "When", "when_conditions_match_waiting_time_will_be_ignored_and_survey_shown": "When conditions match, waiting time will be ignored and survey shown.", "without_a_filter_all_of_your_users_can_be_surveyed": "Without a filter, all of your users can be surveyed.", "you_have_not_created_a_segment_yet": "You have not created a segment yet", diff --git a/apps/web/locales/fr-FR.json b/apps/web/locales/fr-FR.json index c0cd1946fe..8a696e9532 100644 --- a/apps/web/locales/fr-FR.json +++ b/apps/web/locales/fr-FR.json @@ -1596,7 +1596,6 @@ "wait_a_few_seconds_after_the_trigger_before_showing_the_survey": "Attendez quelques secondes après le déclencheur avant de montrer l'enquête.", "waiting_period": "période d'attente", "welcome_message": "Message de bienvenue", - "when": "Quand", "when_conditions_match_waiting_time_will_be_ignored_and_survey_shown": "Lorsque les conditions correspondent, le temps d'attente sera ignoré et l'enquête sera affichée.", "without_a_filter_all_of_your_users_can_be_surveyed": "Sans filtre, tous vos utilisateurs peuvent être sondés.", "you_have_not_created_a_segment_yet": "Tu n'as pas encore créé de segment.", diff --git a/apps/web/locales/pt-BR.json b/apps/web/locales/pt-BR.json index 49ac069375..6153c2bde5 100644 --- a/apps/web/locales/pt-BR.json +++ b/apps/web/locales/pt-BR.json @@ -1596,7 +1596,6 @@ "wait_a_few_seconds_after_the_trigger_before_showing_the_survey": "Espera alguns segundos depois do gatilho antes de mostrar a pesquisa", "waiting_period": "período de espera", "welcome_message": "Mensagem de boas-vindas", - "when": "Quando", "when_conditions_match_waiting_time_will_be_ignored_and_survey_shown": "Quando as condições forem atendidas, o tempo de espera será ignorado e a pesquisa será exibida.", "without_a_filter_all_of_your_users_can_be_surveyed": "Sem um filtro, todos os seus usuários podem ser pesquisados.", "you_have_not_created_a_segment_yet": "Você ainda não criou um segmento.", diff --git a/apps/web/locales/pt-PT.json b/apps/web/locales/pt-PT.json index 825888aa91..cfe794a0c9 100644 --- a/apps/web/locales/pt-PT.json +++ b/apps/web/locales/pt-PT.json @@ -1596,7 +1596,6 @@ "wait_a_few_seconds_after_the_trigger_before_showing_the_survey": "Aguarde alguns segundos após o gatilho antes de mostrar o inquérito", "waiting_period": "período de espera", "welcome_message": "Mensagem de boas-vindas", - "when": "Quando", "when_conditions_match_waiting_time_will_be_ignored_and_survey_shown": "Quando as condições corresponderem, o tempo de espera será ignorado e o inquérito será mostrado.", "without_a_filter_all_of_your_users_can_be_surveyed": "Sem um filtro, todos os seus utilizadores podem ser pesquisados.", "you_have_not_created_a_segment_yet": "Ainda não criou um segmento", diff --git a/apps/web/locales/zh-Hant-TW.json b/apps/web/locales/zh-Hant-TW.json index 465d5b62a2..e23d89020b 100644 --- a/apps/web/locales/zh-Hant-TW.json +++ b/apps/web/locales/zh-Hant-TW.json @@ -1596,7 +1596,6 @@ "wait_a_few_seconds_after_the_trigger_before_showing_the_survey": "在觸發後等待幾秒鐘再顯示問卷", "waiting_period": "等待時間", "welcome_message": "歡迎訊息", - "when": "何時", "when_conditions_match_waiting_time_will_be_ignored_and_survey_shown": "當條件符合時,等待時間將被忽略且顯示問卷。", "without_a_filter_all_of_your_users_can_be_surveyed": "如果沒有篩選器,則可以調查您的所有使用者。", "you_have_not_created_a_segment_yet": "您尚未建立區隔", diff --git a/docs/api-reference/openapi.json b/docs/api-reference/openapi.json index 7628480ad0..9ae2125584 100644 --- a/docs/api-reference/openapi.json +++ b/docs/api-reference/openapi.json @@ -4510,12 +4510,33 @@ } }, { + "description": "The ID of the survey to fetch responses for", "example": "{{surveyId}}", "in": "query", "name": "surveyId", "schema": { "type": "string" } + }, + { + "description": "Number of items to return", + "example": "{{limit}}", + "in": "query", + "name": "limit", + "schema": { + "minimum": 0, + "type": "integer" + } + }, + { + "description": "Number of items to skip", + "example": "{{skip}}", + "in": "query", + "name": "skip", + "schema": { + "minimum": 0, + "type": "integer" + } } ], "responses": {