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
uploadcare.deleteFiles(withUUIDs: uuids) { response, error in
143
143
iflet error = error {
144
144
print(error)
145
145
return
@@ -151,7 +151,7 @@ uploadcare.deleteFiles(withUUIDs: uuids) { (response, error) in
151
151
## Copy file to local storage ([API Reference](https://uploadcare.com/api-refs/rest-api/v0.6.0/#operation/copyFileLocal?utm_source=github&utm_medium=referral&utm_campaign=uploadcare-swift)) ##
@@ -200,14 +200,14 @@ groupsList.get(withQuery: query) { (list, error) in
200
200
}
201
201
202
202
// Get the next page
203
-
groupsList.nextPage { (list, error)in
203
+
groupsList.nextPage { list, error in
204
204
iflet error = error {
205
205
print(error)
206
206
return
207
207
}
208
208
}
209
209
// Get the previous page
210
-
groupsList.previousPage { (list, error)in
210
+
groupsList.previousPage { list, error in
211
211
iflet error = error {
212
212
print(error)
213
213
return
@@ -219,7 +219,7 @@ groupsList.previousPage { (list, error) in
219
219
## 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)) ##
## Store group ([API Reference](https://uploadcare.com/api-refs/rest-api/v0.6.0/#tag/Group/paths/~1groups~1%3Cuuid%3E~1storage~1/put?utm_source=github&utm_medium=referral&utm_campaign=uploadcare-swift)) ##
uploadcare.getAuthenticatedUrlFromUrl(url) { value, error in
265
265
iflet error = error {
266
266
print(error)
267
267
return
@@ -275,7 +275,7 @@ uploadcare.getAuthenticatedUrlFromUrl(url, { (value, error) in
275
275
## List of webhooks ([API Reference](https://uploadcare.com/api-refs/rest-api/v0.6.0/#operation/webhooksList?utm_source=github&utm_medium=referral&utm_campaign=uploadcare-swift)) ##
276
276
277
277
```swift
278
-
uploadcare.getListOfWebhooks { (value, error)in
278
+
uploadcare.getListOfWebhooks { value, error in
279
279
iflet error = error {
280
280
print(error)
281
281
return
@@ -291,7 +291,7 @@ Create and subscribe to a webhook. You can use webhooks to receive notifications
uploadcare.convertDocumentsWithSettings([task1, task2]) { response, error in
344
344
iflet error = error {
345
345
print(error)
346
346
return
@@ -353,7 +353,7 @@ uploadcare.convertDocumentsWithSettings([task1, task2]) { (response, error) in
353
353
Alternatively, you can pass custom "paths" param as array of strings (see ([documentation](https://uploadcare.com/docs/transformations/document_conversion/#convert-url-formatting?utm_source=github&utm_medium=referral&utm_campaign=uploadcare-swift))):
uploadcare.convertVideosWithSettings([task1, task2]) { response, error in
403
403
iflet error = error {
404
404
print(error)
405
405
return
@@ -412,7 +412,7 @@ uploadcare.convertVideosWithSettings([task1, task2]) { (response, error) in
412
412
Alternatively, you can pass custom "paths" param as array of strings (see ([documentation](https://uploadcare.com/docs/transformations/video_encoding/#process-url-formatting?utm_source=github&utm_medium=referral&utm_campaign=uploadcare-swift))):
uploadcare.convertVideos([":uuid/video/-/format/ogg/"]) { response, error in
416
416
iflet error = error {
417
417
print(error)
418
418
return
@@ -425,7 +425,7 @@ uploadcare.convertVideos([":uuid/video/-/format/ogg/"]) { (response, error) in
425
425
## Video conversion job status ([API Reference](https://uploadcare.com/api-refs/rest-api/v0.6.0/#operation/videoConvertStatus?utm_source=github&utm_medium=referral&utm_campaign=uploadcare-swift)) ##
0 commit comments