Skip to content

Commit 4f193a7

Browse files
authored
Catch-up with main (#407)
1 parent 1a8e0dd commit 4f193a7

20 files changed

Lines changed: 122 additions & 122 deletions

openapi/components/codeSamples/authentication.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,52 +2,52 @@
22
get:
33
- lang: cURL
44
source: >-
5-
curl -X GET "https://vrchat.com/api/1/auth" \
5+
curl -X GET "https://api.vrchat.cloud/api/1/auth" \
66
-b "amplitude_id_a750df50d11f21f712262cbd4c0bab37vrchat.com={string}; auth={authCookie}"
77
/logout:
88
put:
99
- lang: cURL
1010
source: >-
11-
curl -X PUT "https://vrchat.com/api/1/logout" \
11+
curl -X PUT "https://api.vrchat.cloud/api/1/logout" \
1212
-b "auth={authCookie}"
1313
/auth/user:
1414
get:
1515
- lang: cURL
1616
source: >-
17-
curl -X GET "https://vrchat.com/api/1/auth/user" \
17+
curl -X GET "https://api.vrchat.cloud/api/1/auth/user" \
1818
-H "Authorization: Basic {string}"
1919
/auth/exists:
2020
get:
2121
- lang: cURL
2222
source: >-
23-
curl -X GET "https://vrchat.com/api/1/auth/exists?email={string}"
23+
curl -X GET "https://api.vrchat.cloud/api/1/auth/exists?email={string}"
2424
/auth/twofactorauth/totp/verify:
2525
post:
2626
- lang: cURL
2727
source: >-
28-
curl -X POST "https://vrchat.com/api/1/auth/twofactorauth/totp/verify" \
28+
curl -X POST "https://api.vrchat.cloud/api/1/auth/twofactorauth/totp/verify" \
2929
-H "Content-Type: application/json" \
3030
-b "auth={authCookie}" \
3131
--data '{"code": "string"}'
3232
/auth/twofactorauth/otp/verify:
3333
post:
3434
- lang: cURL
3535
source: >-
36-
curl -X POST "https://vrchat.com/api/1/auth/twofactorauth/otp/verify" \
36+
curl -X POST "https://api.vrchat.cloud/api/1/auth/twofactorauth/otp/verify" \
3737
-H "Content-Type: application/json" \
3838
-b "auth={authCookie}" \
3939
--data '{"code": "string"}'
4040
/auth/twofactorauth/emailotp/verify:
4141
post:
4242
- lang: cURL
4343
source: >-
44-
curl -X POST "https://vrchat.com/api/1/auth/twofactorauth/emailotp/verify" \
44+
curl -X POST "https://api.vrchat.cloud/api/1/auth/twofactorauth/emailotp/verify" \
4545
-H "Content-Type: application/json" \
4646
-b "auth={authCookie}" \
4747
--data '{"code": "string"}'
4848
'/user/{userId}/delete':
4949
put:
5050
- lang: cURL
5151
source: >-
52-
curl -X PUT "https://vrchat.com/api/1/user/{userId}/delete" \
52+
curl -X PUT "https://api.vrchat.cloud/api/1/user/{userId}/delete" \
5353
-b "auth={authCookie}"

openapi/components/codeSamples/avatars.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,52 +2,52 @@
22
get:
33
- lang: cURL
44
source: >-
5-
curl -X GET "https://vrchat.com/api/1/avatars/favorites?featured=true" \
5+
curl -X GET "https://api.vrchat.cloud/api/1/avatars/favorites?featured=true" \
66
-b "auth={authCookie}"
77
/avatars:
88
get:
99
- lang: cURL
1010
source: >-
11-
curl -X GET "https://vrchat.com/api/1/avatars?featured=true" \
11+
curl -X GET "https://api.vrchat.cloud/api/1/avatars?featured=true" \
1212
-b "auth={authCookie}"
1313
post:
1414
- lang: cURL
1515
source: >-
16-
curl -X POST "https://vrchat.com/api/1/avatars" \
16+
curl -X POST "https://api.vrchat.cloud/api/1/avatars" \
1717
-H "Content-Type: application/json" \
1818
-b "auth={authCookie}" \
1919
--data '{"assetUrl": "string", "id": "{avatarId}", "name": "string", "description": "string", "tags": ["string"], "imageUrl": "string", "releaseStatus": "public", "version": 1, "unityPackageUrl": "string"}'
2020
'/avatars/{avatarId}':
2121
get:
2222
- lang: cURL
2323
source: >-
24-
curl -X GET "https://vrchat.com/api/1/avatars/{avatarId}" \
24+
curl -X GET "https://api.vrchat.cloud/api/1/avatars/{avatarId}" \
2525
-b "auth={authCookie}"
2626
put:
2727
- lang: cURL
2828
source: >-
29-
curl -X PUT "https://vrchat.com/api/1/avatars/{avatarId}" \
29+
curl -X PUT "https://api.vrchat.cloud/api/1/avatars/{avatarId}" \
3030
-H "Content-Type: application/json" \
3131
-b "auth={authCookie}" \
3232
--data '{"assetUrl": "string", "id": "{avatarId}", "name": "string", "description": "string", "tags": ["string"], "imageUrl": "string", "releaseStatus": "public", "version": 1, "unityPackageUrl": "string"}'
3333
delete:
3434
- lang: cURL
3535
source: >-
36-
curl -X DELETE "https://vrchat.com/api/1/avatars/{avatarId}" \
36+
curl -X DELETE "https://api.vrchat.cloud/api/1/avatars/{avatarId}" \
3737
-b "auth={authCookie}"
3838
'/avatars/{avatarId}/select':
3939
put:
4040
- lang: cURL
4141
source: >-
42-
curl -X PUT "https://vrchat.com/api/1/avatars/{avatarId}/select" \
42+
curl -X PUT "https://api.vrchat.cloud/api/1/avatars/{avatarId}/select" \
4343
-b "auth={authCookie}"
4444
'/avatars/{avatarId}/selectFallback':
4545
put:
4646
- lang: cURL
4747
source: >-
48-
curl -X PUT "https://vrchat.com/api/1/avatars/{avatarId}/selectFallback"
48+
curl -X PUT "https://api.vrchat.cloud/api/1/avatars/{avatarId}/selectFallback"
4949
'/users/{userId}/avatar':
5050
get:
5151
- lang: cURL
5252
source: >-
53-
curl -X GET "https://vrchat.com/api/1/users/{userId}/avatar" -b "auth={authCookie}"
53+
curl -X GET "https://api.vrchat.cloud/api/1/users/{userId}/avatar" -b "auth={authCookie}"

openapi/components/codeSamples/economy.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,77 +2,77 @@
22
get:
33
- lang: cURL
44
source: >-
5-
curl -X GET "https://vrchat.com/api/1/Steam/transactions" \
5+
curl -X GET "https://api.vrchat.cloud/api/1/Steam/transactions" \
66
-b "auth={authCookie}"
77
'/Steam/transactions/{transactionId}':
88
get:
99
- lang: cURL
1010
source: >-
11-
curl -X GET "https://vrchat.com/api/1/Steam/transactions/{transactionId}" \
11+
curl -X GET "https://api.vrchat.cloud/api/1/Steam/transactions/{transactionId}" \
1212
-b "auth={authCookie}"
1313
/Admin/transactions:
1414
get:
1515
- lang: cURL
1616
source: >-
17-
curl -X GET "https://vrchat.com/api/1/Admin/transactions" \
17+
curl -X GET "https://api.vrchat.cloud/api/1/Admin/transactions" \
1818
-b "auth=auth={authCookie}"
1919
'/Admin/transactions/{transactionId}':
2020
get:
2121
- lang: cURL
2222
source: >-
23-
curl -X GET "https://vrchat.com/api/1/Admin/transactions/{transactionId}" \
23+
curl -X GET "https://api.vrchat.cloud/api/1/Admin/transactions/{transactionId}" \
2424
-b "auth={authCookie}"
2525
/auth/user/subscription:
2626
get:
2727
- lang: cURL
2828
source: >-
29-
curl -X GET "https://vrchat.com/api/1/auth/user/subscription" \
29+
curl -X GET "https://api.vrchat.cloud/api/1/auth/user/subscription" \
3030
-b "auth={authCookie}"
3131
/subscriptions:
3232
get:
3333
- lang: cURL
3434
source: >-
35-
curl -X GET "https://vrchat.com/api/1/subscriptions" \
35+
curl -X GET "https://api.vrchat.cloud/api/1/subscriptions" \
3636
-b "auth={authCookie}"
3737
'/licenseGroups/{licenseGroupId}':
3838
get:
3939
- lang: cURL
4040
source: >-
41-
curl -X GET "https://vrchat.com/api/1/licenseGroups/{licenseGroupId}" \
41+
curl -X GET "https://api.vrchat.cloud/api/1/licenseGroups/{licenseGroupId}" \
4242
-b "auth={authCookie}"
4343
'/listing/{productId}':
4444
get:
4545
- lang: cURL
4646
source: >-
47-
curl -X GET "https://vrchat.com/api/1/listing/{productId}" \
47+
curl -X GET "https://api.vrchat.cloud/api/1/listing/{productId}" \
4848
-b "auth={authCookie}"
4949
'/user/{userId}/listings':
5050
get:
5151
- lang: cURL
5252
source: >-
53-
curl -X GET "https://vrchat.com/api/1/user/{userId}/listings?hydrate=true" \
53+
curl -X GET "https://api.vrchat.cloud/api/1/user/{userId}/listings?hydrate=true" \
5454
-b "auth={authCookie}"
5555
'/tokenBundles':
5656
get:
5757
- lang: cURL
5858
source: >-
59-
curl -X GET "https://vrchat.com/api/1/tokenBundles" \
59+
curl -X GET "https://api.vrchat.cloud/api/1/tokenBundles" \
6060
-b "auth={authCookie}"
6161
'/tilia/status':
6262
get:
6363
- lang: cURL
6464
source: >-
65-
curl -X GET "https://vrchat.com/api/1/tilia/status" \
65+
curl -X GET "https://api.vrchat.cloud/api/1/tilia/status" \
6666
-b "auth={authCookie}"
6767
'/user/{userId}/tilia/tos':
6868
get:
6969
- lang: cURL
7070
source: >-
71-
curl -X GET "https://vrchat.com/api/1/user/{userId}/tilia/tos" \
71+
curl -X GET "https://api.vrchat.cloud/api/1/user/{userId}/tilia/tos" \
7272
-b "auth={authCookie}"
7373
'/user/{userId}/balance':
7474
get:
7575
- lang: cURL
7676
source: >-
77-
curl -X GET "https://vrchat.com/api/1/user/{userId}/balance" \
77+
curl -X GET "https://api.vrchat.cloud/api/1/user/{userId}/balance" \
7878
-b "auth={authCookie}"

openapi/components/codeSamples/favorites.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,52 +2,52 @@
22
get:
33
- lang: cURL
44
source: >-
5-
curl -X GET "https://vrchat.com/api/1/favorites?type={string}&tag={string}" \
5+
curl -X GET "https://api.vrchat.cloud/api/1/favorites?type={string}&tag={string}" \
66
-b "auth={authCookie}"
77
post:
88
- lang: cURL
99
source: >-
10-
curl -X POST "https://vrchat.com/api/1/favorites" \
10+
curl -X POST "https://api.vrchat.cloud/api/1/favorites" \
1111
-H "Content-Type: application/json" \
1212
-b "auth={authCookie}" \
1313
--data '{"type": "friend", "favoriteId": "userId", "tags": ["string"]}'
1414
'/favorites/{favoriteId}':
1515
get:
1616
- lang: cURL
1717
source: >-
18-
curl -X GET "https://vrchat.com/api/1/favorites/{favoriteId}" \
18+
curl -X GET "https://api.vrchat.cloud/api/1/favorites/{favoriteId}" \
1919
-b "auth={authCookie}"
2020
delete:
2121
- lang: cURL
2222
source: >-
23-
curl -X DELETE "https://vrchat.com/api/1/favorites/{favoriteId}" \
23+
curl -X DELETE "https://api.vrchat.cloud/api/1/favorites/{favoriteId}" \
2424
-b "auth={authCookie}"
2525
/favorite/groups:
2626
get:
2727
- lang: cURL
2828
source: >-
29-
curl -X GET "https://vrchat.com/api/1/favorite/groups?ownerId={userId}" \
29+
curl -X GET "https://api.vrchat.cloud/api/1/favorite/groups?ownerId={userId}" \
3030
-b "auth={authCookie}"
3131
'/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}':
3232
get:
3333
- lang: cURL
3434
source: >-
35-
curl -X GET "https://vrchat.com/api/1/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}" \
35+
curl -X GET "https://api.vrchat.cloud/api/1/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}" \
3636
-b "auth={authCookie}"
3737
put:
3838
- lang: cURL
3939
source: >-
40-
curl -X PUT -H "Content-Type: application/json" "https://vrchat.com/api/1/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}" \
40+
curl -X PUT -H "Content-Type: application/json" "https://api.vrchat.cloud/api/1/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}" \
4141
-b "auth={authCookie}" \
4242
--data '{"displayName": "string", "visibility": "private", "tags": ["string"]}'
4343
delete:
4444
- lang: cURL
4545
source: >-
46-
curl -X DELETE "https://vrchat.com/api/1/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}" \
46+
curl -X DELETE "https://api.vrchat.cloud/api/1/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}" \
4747
-b "auth={authCookie}"
4848
'/auth/user/favoritelimits':
4949
get:
5050
- lang: cURL
5151
source: >-
52-
curl -X GET "https://vrchat.com/api/1/auth/user/favoritelimits" \
52+
curl -X GET "https://api.vrchat.cloud/api/1/auth/user/favoritelimits" \
5353
-b "auth={authCookie}"

openapi/components/codeSamples/files.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,80 +2,80 @@
22
get:
33
- lang: cURL
44
source: >-
5-
curl -X GET "https://vrchat.com/api/1/files?tag={string}" \
5+
curl -X GET "https://api.vrchat.cloud/api/1/files?tag={string}" \
66
-b "auth={authCookie}"
77
/file:
88
post:
99
- lang: cURL
1010
source: >-
11-
curl -X POST "https://vrchat.com/api/1/file" \
11+
curl -X POST "https://api.vrchat.cloud/api/1/file" \
1212
-H "Content-Type: application/json" \
1313
-b "auth={authCookie}" \
1414
--data '{"name": "string", "mimeType": "image/jpeg", "extension": "string", "tags": ["string"]}'
1515
'/file/{fileId}':
1616
get:
1717
- lang: cURL
1818
source: >-
19-
curl -X GET "https://vrchat.com/api/1/file/{fileId}" \
19+
curl -X GET "https://api.vrchat.cloud/api/1/file/{fileId}" \
2020
-b "auth={authCookie}"
2121
delete:
2222
- lang: cURL
2323
source: >-
24-
curl -X DELETE "https://vrchat.com/api/1/file/{fileId}" \
24+
curl -X DELETE "https://api.vrchat.cloud/api/1/file/{fileId}" \
2525
-b "auth={authCookie}"
2626
post:
2727
- lang: cURL
2828
source: >-
29-
curl -X POST "https://vrchat.com/api/1/file/{fileId}" \
29+
curl -X POST "https://api.vrchat.cloud/api/1/file/{fileId}" \
3030
-H "Content-Type: application/json" \
3131
-b "auth={authCookie}" \
3232
--data '{"signatureMd5": "string", "signatureSizeInBytes": 0, "fileMd5": "string", "fileSizeInBytes": 0}'
3333
'/file/{fileId}/{versionId}':
3434
get:
3535
- lang: cURL
3636
source: >-
37-
curl -X GET "https://vrchat.com/api/1/file/{fileId}/{versionId}" \
37+
curl -X GET "https://api.vrchat.cloud/api/1/file/{fileId}/{versionId}" \
3838
-b "auth={authCookie}"
3939
delete:
4040
- lang: cURL
4141
source: >-
42-
curl -X DELETE "https://vrchat.com/api/1/file/{fileId}/{versionId}" \
42+
curl -X DELETE "https://api.vrchat.cloud/api/1/file/{fileId}/{versionId}" \
4343
-b "auth={authCookie}"
4444
'/file/{fileId}/{versionId}/{fileType}/finish':
4545
put:
4646
- lang: cURL
4747
source: >-
48-
curl -X PUT "https://vrchat.com/api/1/file/{fileId}/{versionId}/{fileType}/finish" \
48+
curl -X PUT "https://api.vrchat.cloud/api/1/file/{fileId}/{versionId}/{fileType}/finish" \
4949
-H "Content-Type: application/json" \
5050
-b "auth={authCookie}" \
5151
--data '{"etags": ["xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy"], "nextPartNumber": "0", "maxParts": "0"}'
5252
'/file/{fileId}/{versionId}/{fileType}/start':
5353
put:
5454
- lang: cURL
5555
source: >-
56-
curl -X PUT "https://vrchat.com/api/1/file/{fileId}/{versionId}/{fileType}/start" \
56+
curl -X PUT "https://api.vrchat.cloud/api/1/file/{fileId}/{versionId}/{fileType}/start" \
5757
-b "auth={authCookie}"
5858
/file/{fileId}/{versionId}/{fileType}/status:
5959
get:
6060
- lang: cURL
6161
source: >-
62-
curl -X GET "https://vrchat.com/api/1/file/{fileId}/{versionId}/{fileType}/status" \
62+
curl -X GET "https://api.vrchat.cloud/api/1/file/{fileId}/{versionId}/{fileType}/status" \
6363
-b "auth={authCookie}"
6464
/analysis/{fileId}/{versionId}:
6565
get:
6666
- lang: cURL
6767
source: >-
68-
curl -X GET "https://vrchat.com/api/1/file/{fileId}/{versionId}" \
68+
curl -X GET "https://api.vrchat.cloud/api/1/file/{fileId}/{versionId}" \
6969
-b "auth={authCookie}"
7070
/analysis/{fileId}/{versionId}/security:
7171
get:
7272
- lang: cURL
7373
source: >-
74-
curl -X GET "https://vrchat.com/api/1/file/{fileId}/{versionId}/security" \
74+
curl -X GET "https://api.vrchat.cloud/api/1/file/{fileId}/{versionId}/security" \
7575
-b "auth={authCookie}"
7676
/analysis/{fileId}/{versionId}/standard:
7777
get:
7878
- lang: cURL
7979
source: >-
80-
curl -X GET "https://vrchat.com/api/1/file/{fileId}/{versionId}/standard" \
80+
curl -X GET "https://api.vrchat.cloud/api/1/file/{fileId}/{versionId}/standard" \
8181
-b "auth={authCookie}"

0 commit comments

Comments
 (0)