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: services/fileupload/README.md
+43Lines changed: 43 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,49 @@ interface Response {
85
85
}
86
86
```
87
87
88
+
#### `get_many_files`
89
+
90
+
Gets many files by ID.
91
+
92
+
If `include_access_url` is set to `true`, then the `presigned_access_url` will be included in the response.
93
+
94
+
If `access_url_expiry_seconds` is set to a number, then the `presigned_access_url` will expire after that many seconds. If it is set to `null`, then the URL will have a default expiry time of 15 minutes.
95
+
96
+
If `allow_deleted` is `true` then deleted files will be included. If `false`, then if a deleted file is requested an error will be returned.
97
+
98
+
If `owner` is provided it will filter the results to only include file owned by the specified user.
0 commit comments