prawn 0.1.0

Rust Client for the Tidal API providing comprehensive API coverag, and easy OAuth management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
# \UserCollectionsApi

All URIs are relative to *https://openapi.tidal.com/v2*

Method | HTTP request | Description
------------- | ------------- | -------------
[**add_user_collection_albums**]UserCollectionsApi.md#add_user_collection_albums | **POST** /userCollections/{id}/relationships/albums | Add to albums relationship (\"to-many\").
[**add_user_collection_artists**]UserCollectionsApi.md#add_user_collection_artists | **POST** /userCollections/{id}/relationships/artists | Add to artists relationship (\"to-many\").
[**add_user_collection_playlists**]UserCollectionsApi.md#add_user_collection_playlists | **POST** /userCollections/{id}/relationships/playlists | Add to playlists relationship (\"to-many\").
[**add_user_collection_tracks**]UserCollectionsApi.md#add_user_collection_tracks | **POST** /userCollections/{id}/relationships/tracks | Add to tracks relationship (\"to-many\").
[**add_user_collection_videos**]UserCollectionsApi.md#add_user_collection_videos | **POST** /userCollections/{id}/relationships/videos | Add to videos relationship (\"to-many\").
[**delete_user_collection_albums**]UserCollectionsApi.md#delete_user_collection_albums | **DELETE** /userCollections/{id}/relationships/albums | Delete from albums relationship (\"to-many\").
[**delete_user_collection_artists**]UserCollectionsApi.md#delete_user_collection_artists | **DELETE** /userCollections/{id}/relationships/artists | Delete from artists relationship (\"to-many\").
[**delete_user_collection_tracks**]UserCollectionsApi.md#delete_user_collection_tracks | **DELETE** /userCollections/{id}/relationships/tracks | Delete from tracks relationship (\"to-many\").
[**delete_user_collection_videos**]UserCollectionsApi.md#delete_user_collection_videos | **DELETE** /userCollections/{id}/relationships/videos | Delete from videos relationship (\"to-many\").
[**deleteuser_collection_playlists**]UserCollectionsApi.md#deleteuser_collection_playlists | **DELETE** /userCollections/{id}/relationships/playlists | Delete from playlists relationship (\"to-many\").
[**get_user_collection**]UserCollectionsApi.md#get_user_collection | **GET** /userCollections/{id} | Get single userCollection.
[**get_user_collection_albums**]UserCollectionsApi.md#get_user_collection_albums | **GET** /userCollections/{id}/relationships/albums | Get albums relationship (\"to-many\").
[**get_user_collection_artists**]UserCollectionsApi.md#get_user_collection_artists | **GET** /userCollections/{id}/relationships/artists | Get artists relationship (\"to-many\").
[**get_user_collection_owners**]UserCollectionsApi.md#get_user_collection_owners | **GET** /userCollections/{id}/relationships/owners | Get owners relationship (\"to-many\").
[**get_user_collection_playlists**]UserCollectionsApi.md#get_user_collection_playlists | **GET** /userCollections/{id}/relationships/playlists | Get playlists relationship (\"to-many\").
[**get_user_collection_tracks**]UserCollectionsApi.md#get_user_collection_tracks | **GET** /userCollections/{id}/relationships/tracks | Get tracks relationship (\"to-many\").
[**get_user_collection_videos**]UserCollectionsApi.md#get_user_collection_videos | **GET** /userCollections/{id}/relationships/videos | Get videos relationship (\"to-many\").



## add_user_collection_albums

> add_user_collection_albums(id, country_code, user_collection_albums_relationship_add_operation_payload)
Add to albums relationship (\"to-many\").

Adds item(s) to albums relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**country_code** | Option<**String**> | ISO 3166-1 alpha-2 country code |  |
**user_collection_albums_relationship_add_operation_payload** | Option<[**UserCollectionAlbumsRelationshipAddOperationPayload**]UserCollectionAlbumsRelationshipAddOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## add_user_collection_artists

> add_user_collection_artists(id, country_code, user_collection_artists_relationship_add_operation_payload)
Add to artists relationship (\"to-many\").

Adds item(s) to artists relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**country_code** | Option<**String**> | ISO 3166-1 alpha-2 country code |  |
**user_collection_artists_relationship_add_operation_payload** | Option<[**UserCollectionArtistsRelationshipAddOperationPayload**]UserCollectionArtistsRelationshipAddOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## add_user_collection_playlists

> add_user_collection_playlists(id, user_collection_playlists_relationship_remove_operation_payload)
Add to playlists relationship (\"to-many\").

Adds item(s) to playlists relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**user_collection_playlists_relationship_remove_operation_payload** | Option<[**UserCollectionPlaylistsRelationshipRemoveOperationPayload**]UserCollectionPlaylistsRelationshipRemoveOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## add_user_collection_tracks

> add_user_collection_tracks(id, country_code, user_collection_tracks_relationship_add_operation_payload)
Add to tracks relationship (\"to-many\").

Adds item(s) to tracks relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**country_code** | Option<**String**> | ISO 3166-1 alpha-2 country code |  |
**user_collection_tracks_relationship_add_operation_payload** | Option<[**UserCollectionTracksRelationshipAddOperationPayload**]UserCollectionTracksRelationshipAddOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## add_user_collection_videos

> add_user_collection_videos(id, country_code, user_collection_videos_relationship_add_operation_payload)
Add to videos relationship (\"to-many\").

Adds item(s) to videos relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**country_code** | Option<**String**> | ISO 3166-1 alpha-2 country code |  |
**user_collection_videos_relationship_add_operation_payload** | Option<[**UserCollectionVideosRelationshipAddOperationPayload**]UserCollectionVideosRelationshipAddOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## delete_user_collection_albums

> delete_user_collection_albums(id, user_collection_albums_relationship_remove_operation_payload)
Delete from albums relationship (\"to-many\").

Deletes item(s) from albums relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**user_collection_albums_relationship_remove_operation_payload** | Option<[**UserCollectionAlbumsRelationshipRemoveOperationPayload**]UserCollectionAlbumsRelationshipRemoveOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## delete_user_collection_artists

> delete_user_collection_artists(id, user_collection_artists_relationship_remove_operation_payload)
Delete from artists relationship (\"to-many\").

Deletes item(s) from artists relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**user_collection_artists_relationship_remove_operation_payload** | Option<[**UserCollectionArtistsRelationshipRemoveOperationPayload**]UserCollectionArtistsRelationshipRemoveOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## delete_user_collection_tracks

> delete_user_collection_tracks(id, user_collection_tracks_relationship_remove_operation_payload)
Delete from tracks relationship (\"to-many\").

Deletes item(s) from tracks relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**user_collection_tracks_relationship_remove_operation_payload** | Option<[**UserCollectionTracksRelationshipRemoveOperationPayload**]UserCollectionTracksRelationshipRemoveOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## delete_user_collection_videos

> delete_user_collection_videos(id, user_collection_videos_relationship_remove_operation_payload)
Delete from videos relationship (\"to-many\").

Deletes item(s) from videos relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**user_collection_videos_relationship_remove_operation_payload** | Option<[**UserCollectionVideosRelationshipRemoveOperationPayload**]UserCollectionVideosRelationshipRemoveOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## deleteuser_collection_playlists

> deleteuser_collection_playlists(id, user_collection_playlists_relationship_remove_operation_payload)
Delete from playlists relationship (\"to-many\").

Deletes item(s) from playlists relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**user_collection_playlists_relationship_remove_operation_payload** | Option<[**UserCollectionPlaylistsRelationshipRemoveOperationPayload**]UserCollectionPlaylistsRelationshipRemoveOperationPayload.md> |  |  |

### Return type

 (empty response body)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_user_collection

> models::UserCollectionsSingleResourceDataDocument get_user_collection(id, country_code, locale, include)
Get single userCollection.

Retrieves single userCollection by id.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**country_code** | Option<**String**> | ISO 3166-1 alpha-2 country code |  |
**locale** | Option<**String**> | BCP 47 locale (e.g., en-US, nb-NO, pt-BR). Defaults to en-US if not provided or unsupported. |  |[default to en-US]
**include** | Option<[**Vec<String>**]String.md> | Allows the client to customize which related resources should be returned. Available options: albums, artists, owners, playlists, tracks, videos |  |

### Return type

[**models::UserCollectionsSingleResourceDataDocument**](UserCollections_Single_Resource_Data_Document.md)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_user_collection_albums

> models::UserCollectionsAlbumsMultiRelationshipDataDocument get_user_collection_albums(id, page_cursor, sort, country_code, locale, include)
Get albums relationship (\"to-many\").

Retrieves albums relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**page_cursor** | Option<**String**> | Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified |  |
**sort** | Option<[**Vec<String>**]String.md> | Values prefixed with \"-\" are sorted descending; values without it are sorted ascending. |  |
**country_code** | Option<**String**> | ISO 3166-1 alpha-2 country code |  |
**locale** | Option<**String**> | BCP 47 locale (e.g., en-US, nb-NO, pt-BR). Defaults to en-US if not provided or unsupported. |  |[default to en-US]
**include** | Option<[**Vec<String>**]String.md> | Allows the client to customize which related resources should be returned. Available options: albums |  |

### Return type

[**models::UserCollectionsAlbumsMultiRelationshipDataDocument**](UserCollections_Albums_Multi_Relationship_Data_Document.md)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_user_collection_artists

> models::UserCollectionsArtistsMultiRelationshipDataDocument get_user_collection_artists(id, page_cursor, sort, country_code, locale, include)
Get artists relationship (\"to-many\").

Retrieves artists relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**page_cursor** | Option<**String**> | Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified |  |
**sort** | Option<[**Vec<String>**]String.md> | Values prefixed with \"-\" are sorted descending; values without it are sorted ascending. |  |
**country_code** | Option<**String**> | ISO 3166-1 alpha-2 country code |  |
**locale** | Option<**String**> | BCP 47 locale (e.g., en-US, nb-NO, pt-BR). Defaults to en-US if not provided or unsupported. |  |[default to en-US]
**include** | Option<[**Vec<String>**]String.md> | Allows the client to customize which related resources should be returned. Available options: artists |  |

### Return type

[**models::UserCollectionsArtistsMultiRelationshipDataDocument**](UserCollections_Artists_Multi_Relationship_Data_Document.md)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_user_collection_owners

> models::UserCollectionsMultiRelationshipDataDocument get_user_collection_owners(id, include, page_cursor)
Get owners relationship (\"to-many\").

Retrieves owners relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**include** | Option<[**Vec<String>**]String.md> | Allows the client to customize which related resources should be returned. Available options: owners |  |
**page_cursor** | Option<**String**> | Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified |  |

### Return type

[**models::UserCollectionsMultiRelationshipDataDocument**](UserCollections_Multi_Relationship_Data_Document.md)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_user_collection_playlists

> models::UserCollectionsPlaylistsMultiRelationshipDataDocument get_user_collection_playlists(id, collection_view, page_cursor, sort, include)
Get playlists relationship (\"to-many\").

Retrieves playlists relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**collection_view** | Option<**String**> |  |  |
**page_cursor** | Option<**String**> | Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified |  |
**sort** | Option<[**Vec<String>**]String.md> | Values prefixed with \"-\" are sorted descending; values without it are sorted ascending. |  |
**include** | Option<[**Vec<String>**]String.md> | Allows the client to customize which related resources should be returned. Available options: playlists |  |

### Return type

[**models::UserCollectionsPlaylistsMultiRelationshipDataDocument**](UserCollections_Playlists_Multi_Relationship_Data_Document.md)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_user_collection_tracks

> models::UserCollectionsTracksMultiRelationshipDataDocument get_user_collection_tracks(id, page_cursor, sort, country_code, locale, include)
Get tracks relationship (\"to-many\").

Retrieves tracks relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**page_cursor** | Option<**String**> | Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified |  |
**sort** | Option<[**Vec<String>**]String.md> | Values prefixed with \"-\" are sorted descending; values without it are sorted ascending. |  |
**country_code** | Option<**String**> | ISO 3166-1 alpha-2 country code |  |
**locale** | Option<**String**> | BCP 47 locale (e.g., en-US, nb-NO, pt-BR). Defaults to en-US if not provided or unsupported. |  |[default to en-US]
**include** | Option<[**Vec<String>**]String.md> | Allows the client to customize which related resources should be returned. Available options: tracks |  |

### Return type

[**models::UserCollectionsTracksMultiRelationshipDataDocument**](UserCollections_Tracks_Multi_Relationship_Data_Document.md)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_user_collection_videos

> models::UserCollectionsVideosMultiRelationshipDataDocument get_user_collection_videos(id, page_cursor, sort, country_code, locale, include)
Get videos relationship (\"to-many\").

Retrieves videos relationship.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | User collection id | [required] |
**page_cursor** | Option<**String**> | Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified |  |
**sort** | Option<[**Vec<String>**]String.md> | Values prefixed with \"-\" are sorted descending; values without it are sorted ascending. |  |
**country_code** | Option<**String**> | ISO 3166-1 alpha-2 country code |  |
**locale** | Option<**String**> | BCP 47 locale (e.g., en-US, nb-NO, pt-BR). Defaults to en-US if not provided or unsupported. |  |[default to en-US]
**include** | Option<[**Vec<String>**]String.md> | Allows the client to customize which related resources should be returned. Available options: videos |  |

### Return type

[**models::UserCollectionsVideosMultiRelationshipDataDocument**](UserCollections_Videos_Multi_Relationship_Data_Document.md)

### Authorization

[Authorization_Code_PKCE](../README.md#Authorization_Code_PKCE)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)