You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$qb->select('MAX(submissions.id) AS id, MAX(submissions.form_id) AS form_id, MAX(submissions.user_id) AS user_id, MAX(submissions.timestamp) AS timestamp')
Copy file name to clipboardExpand all lines: openapi.json
+36-2
Original file line number
Diff line number
Diff line change
@@ -548,7 +548,8 @@
548
548
"type": "object",
549
549
"required": [
550
550
"submissions",
551
-
"questions"
551
+
"questions",
552
+
"totalSubmissionsCount"
552
553
],
553
554
"properties": {
554
555
"submissions": {
@@ -562,6 +563,10 @@
562
563
"items": {
563
564
"$ref": "#/components/schemas/Question"
564
565
}
566
+
},
567
+
"totalSubmissionsCount": {
568
+
"type": "integer",
569
+
"format": "int64"
565
570
}
566
571
}
567
572
},
@@ -2975,10 +2980,39 @@
2975
2980
"format": "int64"
2976
2981
}
2977
2982
},
2983
+
{
2984
+
"name": "query",
2985
+
"in": "query",
2986
+
"description": "(optional) A search query to filter submissions",
2987
+
"schema": {
2988
+
"type": "string",
2989
+
"nullable": true
2990
+
}
2991
+
},
2992
+
{
2993
+
"name": "limit",
2994
+
"in": "query",
2995
+
"description": "(optional) The maximum number of submissions to retrieve. Defaults to `null`",
2996
+
"schema": {
2997
+
"type": "integer",
2998
+
"format": "int64",
2999
+
"nullable": true
3000
+
}
3001
+
},
3002
+
{
3003
+
"name": "offset",
3004
+
"in": "query",
3005
+
"description": "(optional) The offset for pagination. Defaults to `0`",
3006
+
"schema": {
3007
+
"type": "integer",
3008
+
"format": "int64",
3009
+
"default": 0
3010
+
}
3011
+
},
2978
3012
{
2979
3013
"name": "fileFormat",
2980
3014
"in": "query",
2981
-
"description": "the file format that should be used for the download. Defaults to `null` Possible values: - `csv`: Comma-separated value - `ods`: OpenDocument Spreadsheet - `xlsx`: Excel Open XML Spreadsheet",
3015
+
"description": "(optional) The file format that should be used for the download. Defaults to `null` Possible values: - `csv`: Comma-separated value - `ods`: OpenDocument Spreadsheet - `xlsx`: Excel Open XML Spreadsheet",
0 commit comments