|
66 | 66 | "snapshot_id": 1, |
67 | 67 | "user_id": 1, |
68 | 68 | "username": "user", |
| 69 | + "group_id": 1, |
69 | 70 | "clickwrap_id": 1, |
70 | 71 | "inbox_id": 1, |
71 | 72 | "watermark_attachment": { |
|
124 | 125 | * `snapshot_id` (int64): ID of the snapshot containing this bundle's contents. |
125 | 126 | * `user_id` (int64): Bundle creator user ID |
126 | 127 | * `username` (string): Bundle creator username |
| 128 | +* `group_id` (int64): Owning group ID. If set, members of this group can view, edit, and share this Share Link. |
127 | 129 | * `clickwrap_id` (int64): ID of the clickwrap to use with this bundle. |
128 | 130 | * `inbox_id` (int64): ID of the associated inbox, if available. |
129 | 131 | * `watermark_attachment` (Image): Preview watermark image applied to all bundle items. |
@@ -194,6 +196,7 @@ await Bundle.create({ |
194 | 196 | 'expires_at': "2000-01-01T01:00:00Z", |
195 | 197 | 'finalize_snapshot': false, |
196 | 198 | 'max_uses': 1, |
| 199 | + 'group_id': 1, |
197 | 200 | 'description': "The public description of the bundle.", |
198 | 201 | 'note': "The internal note on the bundle.", |
199 | 202 | 'code': "abc123", |
@@ -228,6 +231,7 @@ await Bundle.create({ |
228 | 231 | * `expires_at` (string): Bundle expiration date/time |
229 | 232 | * `finalize_snapshot` (boolean): If true, finalize the snapshot of this bundle's contents. Note that `create_snapshot` must also be true. |
230 | 233 | * `max_uses` (int64): Maximum number of times bundle can be accessed |
| 234 | +* `group_id` (int64): Owning group ID. If set, members of this group can view, edit, and share this Share Link. |
231 | 235 | * `description` (string): Public description |
232 | 236 | * `note` (string): Bundle internal note |
233 | 237 | * `code` (string): Bundle code. This code forms the end part of the Public URL. |
@@ -291,6 +295,7 @@ await bundle.update({ |
291 | 295 | 'finalize_snapshot': false, |
292 | 296 | 'inbox_id': 1, |
293 | 297 | 'max_uses': 1, |
| 298 | + 'group_id': 1, |
294 | 299 | 'note': "The internal note on the bundle.", |
295 | 300 | 'path_template': "{{name}}_{{ip}}", |
296 | 301 | 'path_template_time_zone': "Eastern Time (US & Canada)", |
@@ -325,6 +330,7 @@ await bundle.update({ |
325 | 330 | * `finalize_snapshot` (boolean): If true, finalize the snapshot of this bundle's contents. Note that `create_snapshot` must also be true. |
326 | 331 | * `inbox_id` (int64): ID of the associated inbox, if available. |
327 | 332 | * `max_uses` (int64): Maximum number of times bundle can be accessed |
| 333 | +* `group_id` (int64): Owning group ID. If set, members of this group can view, edit, and share this Share Link. |
328 | 334 | * `note` (string): Bundle internal note |
329 | 335 | * `path_template` (string): Template for creating submission subfolders. Can use the uploader's name, email address, ip, company, `strftime` directives, and any custom form data. |
330 | 336 | * `path_template_time_zone` (string): Timezone to use when rendering timestamps in path templates. |
@@ -408,6 +414,7 @@ await bundle.update({ |
408 | 414 | "snapshot_id": 1, |
409 | 415 | "user_id": 1, |
410 | 416 | "username": "user", |
| 417 | + "group_id": 1, |
411 | 418 | "clickwrap_id": 1, |
412 | 419 | "inbox_id": 1, |
413 | 420 | "watermark_attachment": { |
|
0 commit comments