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
Copy file name to clipboardExpand all lines: docs/models/AutomationRun.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,6 @@
26
26
27
27
```
28
28
await AutomationRun.list({
29
-
'user_id': 1,
30
29
'per_page': 1,
31
30
'automation_id': 1,
32
31
})
@@ -35,7 +34,6 @@ await AutomationRun.list({
35
34
36
35
### Parameters
37
36
38
-
*`user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
39
37
*`cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
40
38
*`per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
41
39
*`sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[automation_id]=desc`). Valid fields are `automation_id`, `created_at` or `status`.
Copy file name to clipboardExpand all lines: docs/models/BundleNotification.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,15 +24,13 @@
24
24
25
25
```
26
26
await BundleNotification.list({
27
-
'user_id': 1,
28
27
'per_page': 1,
29
28
})
30
29
```
31
30
32
31
33
32
### Parameters
34
33
35
-
*`user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
36
34
*`cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
37
35
*`per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
38
36
*`sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[bundle_id]=desc`). Valid fields are `bundle_id`.
Copy file name to clipboardExpand all lines: docs/models/BundleRecipient.md
-5Lines changed: 0 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,6 @@
17
17
*`note` (string): A note sent to the recipient with the bundle.
18
18
*`recipient` (string): The recipient's email address.
19
19
*`sent_at` (date-time): When the Bundle was shared with this recipient.
20
-
*`user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
21
20
*`bundle_id` (int64): Bundle to share.
22
21
*`share_after_create` (boolean): Set to true to share the link with the recipient upon creation.
23
22
@@ -27,7 +26,6 @@
27
26
28
27
```
29
28
await BundleRecipient.list({
30
-
'user_id': 1,
31
29
'per_page': 1,
32
30
'bundle_id': 1,
33
31
})
@@ -36,7 +34,6 @@ await BundleRecipient.list({
36
34
37
35
### Parameters
38
36
39
-
*`user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
40
37
*`cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
41
38
*`per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
42
39
*`sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[has_registrations]=desc`). Valid fields are `has_registrations`.
Copy file name to clipboardExpand all lines: docs/models/BundleRegistration.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,6 @@
42
42
43
43
```
44
44
await BundleRegistration.list({
45
-
'user_id': 1,
46
45
'per_page': 1,
47
46
'bundle_id': 1,
48
47
})
@@ -51,7 +50,6 @@ await BundleRegistration.list({
51
50
52
51
### Parameters
53
52
54
-
*`user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
55
53
*`cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
56
54
*`per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
Copy file name to clipboardExpand all lines: lib/models/AutomationRun.js
+9-16Lines changed: 9 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,6 @@ var AutomationRun = /*#__PURE__*/(0, _createClass2.default)(function AutomationR
72
72
});
73
73
_class=AutomationRun;
74
74
// Parameters:
75
-
// user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
76
75
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
77
76
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
78
77
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[automation_id]=desc`). Valid fields are `automation_id`, `created_at` or `status`.
thrownewerrors.InvalidParameterError("Bad parameter: automation_id must be of type Int, received ".concat((0,_utils.getType)(params['automation_id'])));
Copy file name to clipboardExpand all lines: lib/models/BundleNotification.js
+12-19Lines changed: 12 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -203,7 +203,6 @@ var BundleNotification = /*#__PURE__*/(0, _createClass2.default)(function Bundle
203
203
});
204
204
_class=BundleNotification;
205
205
// Parameters:
206
-
// user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
207
206
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
208
207
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
209
208
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[bundle_id]=desc`). Valid fields are `bundle_id`.
0 commit comments