fix: adds api v1/responses docs for limit and skip parameters (#6314)

This commit is contained in:
Anshuman Pandey
2025-07-28 13:14:04 +05:30
committed by GitHub
parent 8881691509
commit 080cf741e9
7 changed files with 21 additions and 6 deletions

View File

@@ -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.",

View File

@@ -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",

View File

@@ -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.",

View File

@@ -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.",

View File

@@ -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",

View File

@@ -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": "您尚未建立區隔",

View File

@@ -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": {