Skip to content

Commit ed3bdf5

Browse files
authored
Update REST API.md
1 parent 2bcab68 commit ed3bdf5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Documentation/REST API.md

+12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* [Delete files](#delete-files-api-reference)
88
* [Store files](#store-files-api-reference)
99
* [Get list of groups](#get-list-of-groups-api-reference)
10+
* [Group info](#group-info-api-reference)
1011

1112

1213

@@ -155,6 +156,17 @@ uploadcare.listOfGroups(withQuery: query) { (list, error) in
155156
}
156157
```
157158

159+
### Group info ([API Reference](https://uploadcare.com/api-refs/rest-api/v0.6.0/#operation/groupInfo?utm_source=github&utm_medium=referral&utm_campaign=uploadcare-swift)) ###
160+
161+
```swift
162+
uploadcare.groupInfo(withUUID: "c5bec8c7-d4b6-4921-9e55-6edb027546bc~1") { (group, error) in
163+
if let error = error {
164+
print(error)
165+
return
166+
}
167+
print(group ?? "")
168+
}
169+
```
158170

159171

160172

0 commit comments

Comments
 (0)