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
It is possible to limit the returned results by supplying a base path prefix in the query. In this case only files that have a path that starts with `submission-1` will be returned.
23
+
24
+
```bash
25
+
curl -H "Authorization: Bearer $token" -X GET https://HOSTNAME/files?path_prefix=submission-1
26
+
```
27
+
22
28
If the `token` is invalid, 401 is returned.
23
29
24
30
- `/datasets`
@@ -215,6 +221,12 @@ Admin endpoints are only available to a set of whitelisted users specified in th
215
221
curl -H "Authorization: Bearer $token" -X GET https://HOSTNAME/users/submitter@example.org/files
216
222
```
217
223
224
+
It is possible to limit the returned results by supplying a base path prefix in the query. In this case only files that have a path that starts with `submission-1` will be returned.
225
+
226
+
```bash
227
+
curl -H "Authorization: Bearer $token" -X GET https://HOSTNAME/users/submitter@example.org/files?path_prefix=submission-1
0 commit comments