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
**author_id** | **str** | A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. |
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**platform** | **str** | This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`. |
11
+
**unity_version** | **str** | | [default to '2022.3.22f1-DWR']
12
+
**variant** | **str** | |
13
+
14
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[**get_avatar**](AvatarsApi.md#get_avatar) | **GET** /avatars/{avatarId} | Get Avatar
12
+
[**get_avatar_styles**](AvatarsApi.md#get_avatar_styles) | **GET** /avatarStyles | Get Avatar Styles
12
13
[**get_favorited_avatars**](AvatarsApi.md#get_favorited_avatars) | **GET** /avatars/favorites | List Favorited Avatars
13
14
[**get_impostor_queue_stats**](AvatarsApi.md#get_impostor_queue_stats) | **GET** /avatars/impostor/queue/stats | Get Impostor Queue Stats
14
15
[**get_licensed_avatars**](AvatarsApi.md#get_licensed_avatars) | **GET** /avatars/licensed | List Licensed Avatars
@@ -393,6 +394,64 @@ Name | Type | Description | Notes
393
394
394
395
[[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)
395
396
397
+
# **get_avatar_styles**
398
+
> list[AvatarStyle] get_avatar_styles()
399
+
400
+
Get Avatar Styles
401
+
402
+
List avatar styles.
403
+
404
+
### Example
405
+
406
+
```python
407
+
from__future__import print_function
408
+
import time
409
+
import vrchatapi
410
+
from vrchatapi.rest import ApiException
411
+
from pprint import pprint
412
+
# Defining the host is optional and defaults to https://api.vrchat.cloud/api/1
413
+
# See configuration.py for a list of all supported configuration parameters.
414
+
configuration = vrchatapi.Configuration(
415
+
host="https://api.vrchat.cloud/api/1"
416
+
)
417
+
418
+
419
+
# Enter a context with an instance of the API client
420
+
with vrchatapi.ApiClient() as api_client:
421
+
# Create an instance of the API class
422
+
api_instance = vrchatapi.AvatarsApi(api_client)
423
+
424
+
try:
425
+
# Get Avatar Styles
426
+
api_response = api_instance.get_avatar_styles()
427
+
pprint(api_response)
428
+
except ApiException as e:
429
+
print("Exception when calling AvatarsApi->get_avatar_styles: %s\n"% e)
430
+
```
431
+
432
+
### Parameters
433
+
This endpoint does not need any parameter.
434
+
435
+
### Return type
436
+
437
+
[**list[AvatarStyle]**](AvatarStyle.md)
438
+
439
+
### Authorization
440
+
441
+
No authorization required
442
+
443
+
### HTTP request headers
444
+
445
+
-**Content-Type**: Not defined
446
+
-**Accept**: application/json
447
+
448
+
### HTTP response details
449
+
| Status code | Description | Response headers |
450
+
|-------------|-------------|------------------|
451
+
**200** | Returns a list of AvatarStyle objects. | - |
452
+
453
+
[[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_admin_asset_bundle**](FilesApi.md#get_admin_asset_bundle) | **GET** /adminassetbundles/{adminAssetBundleId} | Get AdminAssetBundle
13
14
[**get_file**](FilesApi.md#get_file) | **GET** /file/{fileId} | Show File
14
15
[**get_file_analysis**](FilesApi.md#get_file_analysis) | **GET** /analysis/{fileId}/{versionId} | Get File Version Analysis
15
16
[**get_file_analysis_security**](FilesApi.md#get_file_analysis_security) | **GET** /analysis/{fileId}/{versionId}/security | Get File Version Analysis Security
@@ -476,6 +477,79 @@ Name | Type | Description | Notes
476
477
477
478
[[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)
**admin_asset_bundle_id** | **str**| Must be a valid admin asset bundle ID. |
532
+
533
+
### Return type
534
+
535
+
[**AdminAssetBundle**](AdminAssetBundle.md)
536
+
537
+
### Authorization
538
+
539
+
[authCookie](../README.md#authCookie)
540
+
541
+
### HTTP request headers
542
+
543
+
-**Content-Type**: Not defined
544
+
-**Accept**: application/json
545
+
546
+
### HTTP response details
547
+
| Status code | Description | Response headers |
548
+
|-------------|-------------|------------------|
549
+
**200** | Returns a single AdminAssetBundle object. | - |
550
+
551
+
[[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)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments