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
+21
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": {