We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18c1249 commit 7f02c56Copy full SHA for 7f02c56
specs/analytics/common/parameters.yml
@@ -19,6 +19,34 @@ OrderBy:
19
schema:
20
$ref: '#/orderBy'
21
22
+Offset:
23
+ in: query
24
+ name: offset
25
+ description: |
26
+ Position of the first item to return.
27
+
28
+ Combined with the `limit` parameter, only the first 1000 items can be retrieved.
29
+ required: false
30
+ schema:
31
+ type: integer
32
+ default: 0
33
+ minimum: 0
34
+ maximum: 1000
35
36
+Limit:
37
38
+ name: limit
39
40
+ Number of items to return.
41
42
+ Combined with the `offset` parameter, only the first 1000 items can be retrieved.
43
44
45
46
47
+ default: 10
48
49
50
# private
51
orderBy:
52
type: string
0 commit comments