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: Documentation/REST API.md
+19
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@
6
6
*[File Info](#file-info-api-reference)
7
7
*[Delete files](#delete-files-api-reference)
8
8
*[Store files](#store-files-api-reference)
9
+
*[Get list of groups](#get-list-of-groups-api-reference)
10
+
9
11
10
12
11
13
### Initialization
@@ -137,6 +139,23 @@ uploadcare.storeFiles(withUUIDs: uuids) { (response, error) in
137
139
}
138
140
```
139
141
142
+
### Get list of groups ([API Reference](https://uploadcare.com/api-refs/rest-api/v0.6.0/#operation/groupsList?utm_source=github&utm_medium=referral&utm_campaign=uploadcare-swift)) ###
143
+
144
+
```swift
145
+
let query =GroupsListQuery()
146
+
.limit(100)
147
+
.ordering(.datetimeCreatedDESC)
148
+
149
+
uploadcare.listOfGroups(withQuery: query) { (list, error) in
0 commit comments