# vrchat-api ## API Docs - system [Check API Health](https://9kmgmn3n5d.apifox.cn/266786550e0.md): ~~Gets the overall health status, the server name, and the current build version tag of the API.~~ - system [Fetch API Config](https://9kmgmn3n5d.apifox.cn/266786551e0.md): API config contains configuration that the clients needs to work properly. - system [Current Online Users](https://9kmgmn3n5d.apifox.cn/266786552e0.md): Returns the current number of online users. - system [Current System Time](https://9kmgmn3n5d.apifox.cn/266786553e0.md): Returns the current time of the API server. - system [Show Information Notices](https://9kmgmn3n5d.apifox.cn/266786554e0.md): IPS (Info Push System) is a system for VRChat to push out dynamic information to the client. This is primarily used by the Quick-Menu info banners, but can also be used to e.g. alert you to update your game to the latest version. - system [Download CSS](https://9kmgmn3n5d.apifox.cn/266786555e0.md): Fetches the CSS code to the frontend React website. - system [Download JavaScript](https://9kmgmn3n5d.apifox.cn/266786556e0.md): Fetches the JavaScript code to the frontend React website. - authentication [Check User Exists](https://9kmgmn3n5d.apifox.cn/266786557e0.md): Checks if a user by a given `username`, `displayName` or `email` exist. This is used during registration to check if a username has already been taken, during change of displayName to check if a displayName is available, and during change of email to check if the email is already used. In the later two cases the `excludeUserId` is used to exclude oneself, otherwise the result would always be true. - authentication [Verify Auth Token](https://9kmgmn3n5d.apifox.cn/266786558e0.md): Verify whether the currently provided Auth Token is valid. - authentication [Logout](https://9kmgmn3n5d.apifox.cn/266786559e0.md): Invalidates the login session. - authentication [Delete User](https://9kmgmn3n5d.apifox.cn/266786560e0.md): Deletes the account with given ID. Normal users only have permission to delete their own account. Account deletion is 14 days from this request, and will be cancelled if you do an authenticated request with the account afterwards. - authentication [Login and/or Get Current User Info](https://9kmgmn3n5d.apifox.cn/266786561e0.md): This endpoint does the following two operations: - authentication [Verify 2FA code](https://9kmgmn3n5d.apifox.cn/266786562e0.md): Finishes the login sequence with a normal 2FA-generated code for accounts with 2FA-protection enabled. - authentication [Verify 2FA code with Recovery code](https://9kmgmn3n5d.apifox.cn/266786563e0.md): Finishes the login sequence with an OTP (One Time Password) recovery code for accounts with 2FA-protection enabled. - authentication [Verify 2FA email code](https://9kmgmn3n5d.apifox.cn/266786564e0.md): Finishes the login sequence with an 2FA email code. - avatars [Get Own Avatar](https://9kmgmn3n5d.apifox.cn/266786565e0.md): Get the current avatar for the user. This will return an error for any other user than the one logged in. - avatars [Select Avatar](https://9kmgmn3n5d.apifox.cn/266786566e0.md): Switches into that avatar. - avatars [Select Fallback Avatar](https://9kmgmn3n5d.apifox.cn/266786567e0.md): Switches into that avatar as your fallback avatar. - avatars [Enqueue Impostor generation](https://9kmgmn3n5d.apifox.cn/276348609e0.md): Enqueue Impostor generation for that avatar. - avatars [Get Impostor Queue Stats](https://9kmgmn3n5d.apifox.cn/276348610e0.md): Gets service stats for queued impostor. - avatars [Delete generated Impostor](https://9kmgmn3n5d.apifox.cn/276348611e0.md): Delete generated Impostor for that avatar. - avatars [List Favorited Avatars](https://9kmgmn3n5d.apifox.cn/266786568e0.md): Search and list favorited avatars by query filters. - avatars [List Licensed Avatars](https://9kmgmn3n5d.apifox.cn/276348612e0.md): List licensed avatars. - avatars [Search Avatars](https://9kmgmn3n5d.apifox.cn/266786569e0.md): Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other peoples avatars. - avatars [Create Avatar](https://9kmgmn3n5d.apifox.cn/266786570e0.md): Create an avatar. It's possible to optionally specify a ID if you want a custom one. Attempting to create an Avatar with an already claimed ID will result in a DB error. - avatars [Get Avatar](https://9kmgmn3n5d.apifox.cn/266786571e0.md): Get information about a specific Avatar. - avatars [Delete Avatar](https://9kmgmn3n5d.apifox.cn/266786572e0.md): Delete an avatar. Notice an avatar is never fully "deleted", only its ReleaseStatus is set to "hidden" and the linked Files are deleted. The AvatarID is permanently reserved. - avatars [Update Avatar](https://9kmgmn3n5d.apifox.cn/266786573e0.md): Update information about a specific avatar. - files [Check FileData Upload Status](https://9kmgmn3n5d.apifox.cn/266786574e0.md): Retrieves the upload status for file upload. Can currently only be accessed when `status` is `waiting`. Trying to access it on a file version already uploaded currently times out. - files [Get File Version Analysis](https://9kmgmn3n5d.apifox.cn/266786575e0.md): Get the performance analysis for the uploaded assets of an avatar - files [Get File Version Analysis Security](https://9kmgmn3n5d.apifox.cn/266786576e0.md): Get the security performance analysis for the uploaded assets of an avatar - files [Get File Version Analysis Standard](https://9kmgmn3n5d.apifox.cn/266786577e0.md): Get the standard performance analysis for the uploaded assets of an avatar - files [List Files](https://9kmgmn3n5d.apifox.cn/266786578e0.md): Returns a list of files - files [Create File](https://9kmgmn3n5d.apifox.cn/266786579e0.md): Creates a new File object - files [Show File](https://9kmgmn3n5d.apifox.cn/266786580e0.md): Shows general information about the "File" object. Each File can have several "Version"'s, and each Version can have multiple real files or "Data" blobs. - files [Delete File](https://9kmgmn3n5d.apifox.cn/266786581e0.md): Deletes a File object. - files [Create File Version](https://9kmgmn3n5d.apifox.cn/266786582e0.md): Creates a new FileVersion. Once a Version has been created, proceed to the `/file/{fileId}/{versionId}/file/start` endpoint to start a file upload. - files [Download File Version](https://9kmgmn3n5d.apifox.cn/266786583e0.md): Downloads the file with the provided version number. - files [Delete File Version](https://9kmgmn3n5d.apifox.cn/266786584e0.md): Delete a specific version of a file. You can only delete the latest version. - files [Start FileData Upload](https://9kmgmn3n5d.apifox.cn/266786585e0.md): Starts an upload of a specific FilePart. This endpoint will return an AWS URL which you can PUT data to. You need to call this and receive a new AWS API URL for each `partNumber`. Please see AWS's REST documentation on "PUT Object to S3" on how to upload. Once all parts has been uploaded, proceed to `/finish` endpoint. - files [Finish FileData Upload](https://9kmgmn3n5d.apifox.cn/266786586e0.md): Finish an upload of a FileData. This will mark it as "complete". After uploading the `file` for Avatars and Worlds you then have to upload a `signature` file. - friends [Check Friend Status](https://9kmgmn3n5d.apifox.cn/266786587e0.md): Retrieve if the user is currently a friend with a given user, if they have an outgoing friend request, and if they have an incoming friend request. The proper way to receive and accept friend request is by checking if the user has an incoming `Notification` of type `friendRequest`, and then accepting that notification. - friends [Unfriend](https://9kmgmn3n5d.apifox.cn/266786588e0.md): Unfriend a user by ID. - friends [List Friends](https://9kmgmn3n5d.apifox.cn/266786589e0.md): List information about friends. - friends [Send Friend Request](https://9kmgmn3n5d.apifox.cn/266786590e0.md): Send a friend request to another user. - friends [Delete Friend Request](https://9kmgmn3n5d.apifox.cn/266786591e0.md): Deletes an outgoing pending friend request to another user. To delete an incoming friend request, use the `deleteNotification` endpoint instead. - groups [Get Group Audit Logs](https://9kmgmn3n5d.apifox.cn/266786592e0.md): Returns a list of audit logs for a Group. - groups [Unban Group Member](https://9kmgmn3n5d.apifox.cn/266786593e0.md): Unbans a user from a Group. - groups [Delete Group Gallery Image](https://9kmgmn3n5d.apifox.cn/266786594e0.md): Deletes an image from a Group gallery. - groups [Get Group Instances](https://9kmgmn3n5d.apifox.cn/266786595e0.md): Returns a list of group instances - groups [Delete User Invite](https://9kmgmn3n5d.apifox.cn/266786596e0.md): Deletes an Group invite sent to a User - groups [Join Group](https://9kmgmn3n5d.apifox.cn/266786597e0.md): Join a Group by ID and returns the member object. - groups [Leave Group](https://9kmgmn3n5d.apifox.cn/266786598e0.md): Leave a group by ID. - groups [List Group Members](https://9kmgmn3n5d.apifox.cn/266786599e0.md): Returns a List of all **other** Group Members. This endpoint will never return the user calling the endpoint. - groups [List Group Permissions](https://9kmgmn3n5d.apifox.cn/266786600e0.md): Returns a List of all possible/available permissions for a Group. - groups [Respond Group Join request](https://9kmgmn3n5d.apifox.cn/266786601e0.md): Responds to a Group Join Request with Accept/Deny - groups [Search Group](https://9kmgmn3n5d.apifox.cn/266786602e0.md): Searches Groups by name or shortCode - groups [Create Group](https://9kmgmn3n5d.apifox.cn/266786603e0.md): Creates a Group and returns a Group object. **Requires VRC+ Subscription.** - groups [Get Group Announcement](https://9kmgmn3n5d.apifox.cn/266786604e0.md): Returns the announcement for a Group. - groups [Delete Group Announcement](https://9kmgmn3n5d.apifox.cn/266786605e0.md): Deletes the announcement for a Group. - groups [Create Group Announcement](https://9kmgmn3n5d.apifox.cn/266786606e0.md): Creates an Announcement for a Group. Warning: This will also remove all announcements. To make proper announcements, use the posts endpoint instead - groups [Get Group Bans](https://9kmgmn3n5d.apifox.cn/266786607e0.md): Returns a list of banned users for a Group. - groups [Ban Group Member](https://9kmgmn3n5d.apifox.cn/266786608e0.md): Bans a user from a Group. - groups [Create Group Gallery](https://9kmgmn3n5d.apifox.cn/266786609e0.md): Creates a gallery for a Group. - groups [Add Group Gallery Image](https://9kmgmn3n5d.apifox.cn/266786610e0.md): Adds an image to a Group gallery. - groups [Get Group Invites Sent](https://9kmgmn3n5d.apifox.cn/266786611e0.md): Returns a list of members that have been invited to the Group. - groups [Invite User to Group](https://9kmgmn3n5d.apifox.cn/266786612e0.md): Sends an invite to a user to join the group. - groups [Get Group Member](https://9kmgmn3n5d.apifox.cn/266786613e0.md): Returns a LimitedGroup Member. - groups [Kick Group Member](https://9kmgmn3n5d.apifox.cn/266786614e0.md): Kicks a Group Member from the Group. The current user must have the "Remove Group Members" permission. - groups [Update Group Member](https://9kmgmn3n5d.apifox.cn/266786615e0.md): Updates a Group Member - groups [Add Role to GroupMember](https://9kmgmn3n5d.apifox.cn/266786616e0.md): Adds a Role to a Group Member - groups [Remove Role from GroupMember](https://9kmgmn3n5d.apifox.cn/266786617e0.md): Removes a Role from a Group Member - groups [Delete a Group post](https://9kmgmn3n5d.apifox.cn/266786618e0.md): Delete a Group post - groups [Edits a Group post](https://9kmgmn3n5d.apifox.cn/266786619e0.md): Edits a Group post - groups [Get Group Roles](https://9kmgmn3n5d.apifox.cn/266786620e0.md): Returns a Group Role by ID. - groups [Create GroupRole](https://9kmgmn3n5d.apifox.cn/266786621e0.md): Create a Group role. - groups [Delete Group](https://9kmgmn3n5d.apifox.cn/266786622e0.md): Deletes a Group. - groups [Get Group by ID](https://9kmgmn3n5d.apifox.cn/266786623e0.md): Returns a single Group by ID. - groups [Update Group](https://9kmgmn3n5d.apifox.cn/266786624e0.md): Updates a Group and returns it. - groups [Delete Group Gallery](https://9kmgmn3n5d.apifox.cn/266786625e0.md): Deletes a gallery for a Group. - groups [Get Group Gallery Images](https://9kmgmn3n5d.apifox.cn/266786626e0.md): Returns a list of images for a Group gallery. - groups [Update Group Gallery](https://9kmgmn3n5d.apifox.cn/266786627e0.md): Updates a gallery for a Group. - groups [Get posts from a Group](https://9kmgmn3n5d.apifox.cn/266786628e0.md): Get posts from a Group - groups [Create a post in a Group](https://9kmgmn3n5d.apifox.cn/266786629e0.md): Create a post in a Group. - groups [Cancel Group Join Request](https://9kmgmn3n5d.apifox.cn/266786630e0.md): Cancels a request sent to join the group. - groups [Get Group Join Requests](https://9kmgmn3n5d.apifox.cn/266786631e0.md): Returns a list of members that have requested to join the Group. - groups [Delete Group Role](https://9kmgmn3n5d.apifox.cn/266786632e0.md): Deletes a Group Role by ID and returns the remaining roles. - groups [Update Group Role](https://9kmgmn3n5d.apifox.cn/266786633e0.md): Updates a group role by ID. - invite [List Invite Messages](https://9kmgmn3n5d.apifox.cn/266786634e0.md): Returns a list of all the users Invite Messages. Admin Credentials are required to view messages of other users! - invite [Invite User](https://9kmgmn3n5d.apifox.cn/266786635e0.md): Sends an invite to a user. Returns the Notification of type `invite` that was sent. - invite [Invite Myself To Instance](https://9kmgmn3n5d.apifox.cn/266786636e0.md): Sends self an invite to an instance - invite [Respond Invite](https://9kmgmn3n5d.apifox.cn/266786637e0.md): Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification. - invite [Request Invite](https://9kmgmn3n5d.apifox.cn/266786638e0.md): Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent. - invite [Get Invite Message](https://9kmgmn3n5d.apifox.cn/266786639e0.md): Returns a single Invite Message. This returns the exact same information but less than `getInviteMessages`. Admin Credentials are required to view messages of other users! - invite [Reset Invite Message](https://9kmgmn3n5d.apifox.cn/266786640e0.md): Resets a single Invite Message back to its original message, and then returns a list of all of them. Admin Credentials are required to update messages of other users! - invite [Update Invite Message](https://9kmgmn3n5d.apifox.cn/266786641e0.md): Updates a single Invite Message and then returns a list of all of them. Admin Credentials are required to update messages of other users! - notifications [Show notification](https://9kmgmn3n5d.apifox.cn/266786642e0.md): Get a notification by notification `not_` ID. - notifications [Accept Friend Request](https://9kmgmn3n5d.apifox.cn/266786643e0.md): Accept a friend request by notification `frq_` ID. Friend requests can be found using the NotificationsAPI `getNotifications` by filtering of type `friendRequest`. - notifications [Mark Notification As Read](https://9kmgmn3n5d.apifox.cn/266786644e0.md): Mark a notification as seen. - notifications [Delete Notification](https://9kmgmn3n5d.apifox.cn/266786645e0.md): Delete a notification. - notifications [Clear All Notifications](https://9kmgmn3n5d.apifox.cn/266786646e0.md): Clear **all** notifications. - notifications [List Notifications](https://9kmgmn3n5d.apifox.cn/266786647e0.md): Retrieve all of the current user's notifications. - permissions [Get Permission](https://9kmgmn3n5d.apifox.cn/266786648e0.md): Returns a single permission. This endpoint is pretty useless, as it returns the exact same information as `/auth/permissions`. - permissions [Get Assigned Permissions](https://9kmgmn3n5d.apifox.cn/266786649e0.md): Returns a list of all permissions currently granted by the user. Permissions are assigned e.g. by subscribing to VRC+. - jams [Show jam information](https://9kmgmn3n5d.apifox.cn/266786650e0.md): Returns a jam. - jams [Show jam submissions](https://9kmgmn3n5d.apifox.cn/266786651e0.md): Returns all submissions of a jam. - jams [Show jams list](https://9kmgmn3n5d.apifox.cn/266786652e0.md): Lists World Jams or Avatar Jams, both currently running and ones that have ended. - users [Get User by Username](https://9kmgmn3n5d.apifox.cn/266786653e0.md): ~~Get public user information about a specific user using their name.~~ - users [Get User Group Requests](https://9kmgmn3n5d.apifox.cn/266786654e0.md): Returns a list of Groups the user has requested to be invited into. - users [Get User Feedback](https://9kmgmn3n5d.apifox.cn/266786655e0.md): Get user's submitted feedback - users [Get User Note](https://9kmgmn3n5d.apifox.cn/266786656e0.md): Get a particular user note - users [Get User Group Instances](https://9kmgmn3n5d.apifox.cn/266786657e0.md): Returns a list of group instances for a user - users [Check User Persistence Exists](https://9kmgmn3n5d.apifox.cn/276348613e0.md): Checks whether the user has persistence data for a given world - users [Delete User Persistence](https://9kmgmn3n5d.apifox.cn/276348614e0.md): Deletes the user's persistence data for a given world - users [Search All Users](https://9kmgmn3n5d.apifox.cn/266786658e0.md): Search and list any users by text query - users [Get User by ID](https://9kmgmn3n5d.apifox.cn/266786659e0.md): Get public user information about a specific user using their ID. - users [Update User Info](https://9kmgmn3n5d.apifox.cn/266786660e0.md): Update a users information such as the email and birthday. - users [Get User Groups](https://9kmgmn3n5d.apifox.cn/266786661e0.md): Get user's public groups - users [Get User Notes](https://9kmgmn3n5d.apifox.cn/266786662e0.md): Get recently updated user notes - users [Update User Note](https://9kmgmn3n5d.apifox.cn/266786663e0.md): Updates the currently authenticated user's note on a user - users [Add User Tags](https://9kmgmn3n5d.apifox.cn/276348615e0.md): Adds tags to the user's profile - users [Remove User Tags](https://9kmgmn3n5d.apifox.cn/276348616e0.md): Removes tags from the user's profile - users [Update User Badge](https://9kmgmn3n5d.apifox.cn/276348617e0.md): Updates a user's badge - users [Get user's current represented group](https://9kmgmn3n5d.apifox.cn/266786664e0.md): Returns the current group that the user is currently representing - economy [List Steam Transactions](https://9kmgmn3n5d.apifox.cn/266786665e0.md): Get all own Steam transactions. - economy [Get Steam Transaction](https://9kmgmn3n5d.apifox.cn/266786666e0.md): Get a single Steam transactions by ID. This returns the exact same information as `getSteamTransactions`, so no point in using this endpoint. - economy [Get Current Subscriptions](https://9kmgmn3n5d.apifox.cn/266786667e0.md): Get a list of all current user subscriptions. - economy [List Subscriptions](https://9kmgmn3n5d.apifox.cn/266786668e0.md): List all existing Subscriptions. For example, "vrchatplus-monthly" and "vrchatplus-yearly". - economy [Get License Group](https://9kmgmn3n5d.apifox.cn/266786669e0.md): Get a single License Group by given ID. - economy [Get Product Listing](https://9kmgmn3n5d.apifox.cn/266786670e0.md): Gets a product listing - economy [Get User Product Listings](https://9kmgmn3n5d.apifox.cn/266786671e0.md): Gets the product listings of a given user - economy [List Token Bundles](https://9kmgmn3n5d.apifox.cn/266786672e0.md): Gets the list of token bundles - economy [Get Tilia Status](https://9kmgmn3n5d.apifox.cn/266786673e0.md): Gets the status of Tilia integration - economy [Get Tilia TOS Agreement Status](https://9kmgmn3n5d.apifox.cn/266786674e0.md): Gets the status of the agreement of a user to the Tilia TOS - economy [Get Balance](https://9kmgmn3n5d.apifox.cn/266786675e0.md): Gets the balance of a user - favorites [Remove Favorite](https://9kmgmn3n5d.apifox.cn/266786679e0.md): Remove a favorite from your favorites list. - favorites [List Favorite Groups](https://9kmgmn3n5d.apifox.cn/266786676e0.md): Return a list of favorite groups owned by a user. Returns the same information as `getFavoriteGroups`. - favorites [Get Favorite Limits](https://9kmgmn3n5d.apifox.cn/266786677e0.md): Return information about a specific Favorite. - favorites [Show Favorite](https://9kmgmn3n5d.apifox.cn/266786678e0.md): Return information about a specific Favorite. - favorites [Show Favorite Group](https://9kmgmn3n5d.apifox.cn/266786680e0.md): Fetch information about a specific favorite group. - favorites [Clear Favorite Group](https://9kmgmn3n5d.apifox.cn/266786681e0.md): Clear ALL contents of a specific favorite group. - favorites [Update Favorite Group](https://9kmgmn3n5d.apifox.cn/266786682e0.md): Update information about a specific favorite group. - favorites [List Favorites](https://9kmgmn3n5d.apifox.cn/266786683e0.md): Returns a list of favorites. - favorites [Add Favorite](https://9kmgmn3n5d.apifox.cn/266786684e0.md): Add a new favorite. - instances [Create Instance](https://9kmgmn3n5d.apifox.cn/266786685e0.md): Create an instance - instances [Get Instance Short Name](https://9kmgmn3n5d.apifox.cn/266786686e0.md): Returns an instance short name. - instances [Get Instance By Short Name](https://9kmgmn3n5d.apifox.cn/266786687e0.md): Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances. - instances [Get Instance](https://9kmgmn3n5d.apifox.cn/266786688e0.md): Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances. - instances [Close Instance](https://9kmgmn3n5d.apifox.cn/266786689e0.md): Close an instance or update the closedAt time when it will be closed. - worlds [List Active Worlds](https://9kmgmn3n5d.apifox.cn/266786690e0.md): Search and list currently Active worlds by query filters. - worlds [List Favorited Worlds](https://9kmgmn3n5d.apifox.cn/266786691e0.md): Search and list favorited worlds by query filters. - worlds [List Recent Worlds](https://9kmgmn3n5d.apifox.cn/266786692e0.md): Search and list recently visited worlds by query filters. - worlds [Get World Metadata](https://9kmgmn3n5d.apifox.cn/266786693e0.md): Return a worlds custom metadata. This is currently believed to be unused. Metadata can be set with `updateWorld` and can be any arbitrary object. - worlds [Get World Instance](https://9kmgmn3n5d.apifox.cn/266786694e0.md): Returns a worlds instance. - worlds [Create World](https://9kmgmn3n5d.apifox.cn/266786695e0.md): Create a new world. This endpoint requires `assetUrl` to be a valid File object with `.vrcw` file extension, and `imageUrl` to be a valid File object with an image file extension. - worlds [Search All Worlds](https://9kmgmn3n5d.apifox.cn/266786696e0.md): Search and list any worlds by query filters. - worlds [Get World by ID](https://9kmgmn3n5d.apifox.cn/266786697e0.md): Get information about a specific World. - worlds [Delete World](https://9kmgmn3n5d.apifox.cn/266786698e0.md): Delete a world. Notice a world is never fully "deleted", only its ReleaseStatus is set to "hidden" and the linked Files are deleted. The WorldID is permanently reserved. - worlds [Update World](https://9kmgmn3n5d.apifox.cn/266786699e0.md): Update information about a specific World. - worlds [Get World Publish Status](https://9kmgmn3n5d.apifox.cn/266786700e0.md): Returns a worlds publish status. - worlds [Publish World](https://9kmgmn3n5d.apifox.cn/266786701e0.md): Publish a world. You can only publish one world per week. - worlds [Unpublish World](https://9kmgmn3n5d.apifox.cn/266786702e0.md): Unpublish a world. - playermoderation [Unmoderate User](https://9kmgmn3n5d.apifox.cn/266786703e0.md): Removes a player moderation previously added through `moderateUser`. E.g if you previously have shown their avatar, but now want to reset it to default. - playermoderation [Search Player Moderations](https://9kmgmn3n5d.apifox.cn/266786704e0.md): Returns a list of all player moderations made by **you**. - playermoderation [Clear All Player Moderations](https://9kmgmn3n5d.apifox.cn/266786705e0.md): ⚠️ **This will delete every single player moderation you've ever made.** - playermoderation [Moderate User](https://9kmgmn3n5d.apifox.cn/266786706e0.md): Moderate a user, e.g. unmute them or show their avatar. - prints [Get Own Prints](https://9kmgmn3n5d.apifox.cn/268683619e0.md): Returns a list of all prints of the user. User id has to be your own userId, as you can't request other user's prints. - prints [Get Print](https://9kmgmn3n5d.apifox.cn/268683620e0.md): Returns a print. - prints [Delete Print](https://9kmgmn3n5d.apifox.cn/268683621e0.md): Returns a print. ## Schemas - Schemas [UserID](https://9kmgmn3n5d.apifox.cn/150078053d0.md): - Schemas [AgeVerified](https://9kmgmn3n5d.apifox.cn/150078054d0.md): - Schemas [BadgeID](https://9kmgmn3n5d.apifox.cn/150078055d0.md): - Schemas [AvatarID](https://9kmgmn3n5d.apifox.cn/150078056d0.md): - Schemas [CurrentAvatarImageUrl](https://9kmgmn3n5d.apifox.cn/150078057d0.md): - Schemas [CurrentAvatarThumbnailImageUrl](https://9kmgmn3n5d.apifox.cn/150078058d0.md): - Schemas [Tag](https://9kmgmn3n5d.apifox.cn/150078059d0.md): - Schemas [WorldID](https://9kmgmn3n5d.apifox.cn/150078060d0.md): - Schemas [Platform](https://9kmgmn3n5d.apifox.cn/150078061d0.md): - Schemas [GroupID](https://9kmgmn3n5d.apifox.cn/150078062d0.md): - Schemas [UnityPackageID](https://9kmgmn3n5d.apifox.cn/150078063d0.md): - Schemas [TransactionID](https://9kmgmn3n5d.apifox.cn/150078064d0.md): - Schemas [LicenseGroupID](https://9kmgmn3n5d.apifox.cn/150078065d0.md): - Schemas [FileID](https://9kmgmn3n5d.apifox.cn/150078066d0.md): - Schemas [GroupRoleID](https://9kmgmn3n5d.apifox.cn/150078067d0.md): - Schemas [ProductID](https://9kmgmn3n5d.apifox.cn/150078068d0.md): - Schemas [ProductListingVariantID](https://9kmgmn3n5d.apifox.cn/150078069d0.md): - Schemas [FavoriteID](https://9kmgmn3n5d.apifox.cn/150078070d0.md): - Schemas [FavoriteGroupID](https://9kmgmn3n5d.apifox.cn/150078071d0.md): - Schemas [GroupShortCode](https://9kmgmn3n5d.apifox.cn/150078072d0.md): - Schemas [GroupDiscriminator](https://9kmgmn3n5d.apifox.cn/150078073d0.md): - Schemas [GroupGalleryID](https://9kmgmn3n5d.apifox.cn/150078074d0.md): - Schemas [GroupMemberID](https://9kmgmn3n5d.apifox.cn/150078075d0.md): - Schemas [GroupAnnouncementID](https://9kmgmn3n5d.apifox.cn/150078076d0.md): - Schemas [GroupAuditLogID](https://9kmgmn3n5d.apifox.cn/150078077d0.md): - Schemas [GroupGalleryImageID](https://9kmgmn3n5d.apifox.cn/150078078d0.md): - Schemas [InstanceID](https://9kmgmn3n5d.apifox.cn/150078079d0.md): - Schemas [UdonProductId](https://9kmgmn3n5d.apifox.cn/150078080d0.md): - Schemas [GroupRoleIDList](https://9kmgmn3n5d.apifox.cn/150078081d0.md): - Schemas [NotificationID](https://9kmgmn3n5d.apifox.cn/150078082d0.md): - Schemas [InviteMessageID](https://9kmgmn3n5d.apifox.cn/150078083d0.md): - Schemas [InstanceOwnerId](https://9kmgmn3n5d.apifox.cn/150078084d0.md): - Schemas [PermissionID](https://9kmgmn3n5d.apifox.cn/150078085d0.md): - Schemas [PlayerModerationID](https://9kmgmn3n5d.apifox.cn/150078086d0.md): - Schemas [FeedbackID](https://9kmgmn3n5d.apifox.cn/150078087d0.md): - Schemas [PrintID](https://9kmgmn3n5d.apifox.cn/151218792d0.md): - Schemas [UserNoteID](https://9kmgmn3n5d.apifox.cn/150078088d0.md): - Schemas [Error](https://9kmgmn3n5d.apifox.cn/150078089d0.md): - Schemas [AgeVerificationStatus](https://9kmgmn3n5d.apifox.cn/150078090d0.md): - Schemas [DeveloperType](https://9kmgmn3n5d.apifox.cn/150078091d0.md): - Schemas [UserState](https://9kmgmn3n5d.apifox.cn/150078092d0.md): - Schemas [UserStatus](https://9kmgmn3n5d.apifox.cn/150078093d0.md): - Schemas [Success](https://9kmgmn3n5d.apifox.cn/150078094d0.md): - Schemas [ReleaseStatus](https://9kmgmn3n5d.apifox.cn/150078095d0.md): - Schemas [PerformanceRatings](https://9kmgmn3n5d.apifox.cn/150078096d0.md): - Schemas [SortOption](https://9kmgmn3n5d.apifox.cn/150078097d0.md): - Schemas [OrderOption](https://9kmgmn3n5d.apifox.cn/150078098d0.md): - Schemas [TransactionStatus](https://9kmgmn3n5d.apifox.cn/150078099d0.md): - Schemas [SubscriptionPeriod](https://9kmgmn3n5d.apifox.cn/150078100d0.md): - Schemas [LicenseType](https://9kmgmn3n5d.apifox.cn/150078101d0.md): - Schemas [LicenseAction](https://9kmgmn3n5d.apifox.cn/150078102d0.md): - Schemas [ProductType](https://9kmgmn3n5d.apifox.cn/150078103d0.md): - Schemas [ProductListingType](https://9kmgmn3n5d.apifox.cn/150078104d0.md): - Schemas [FavoriteType](https://9kmgmn3n5d.apifox.cn/150078105d0.md): - Schemas [FavoriteGroupVisibility](https://9kmgmn3n5d.apifox.cn/150078106d0.md): - Schemas [MIMEType](https://9kmgmn3n5d.apifox.cn/150078107d0.md): - Schemas [FileStatus](https://9kmgmn3n5d.apifox.cn/150078108d0.md): - Schemas [NotificationType](https://9kmgmn3n5d.apifox.cn/150078109d0.md): - Schemas [GroupMemberStatus](https://9kmgmn3n5d.apifox.cn/150078110d0.md): - Schemas [GroupJoinState](https://9kmgmn3n5d.apifox.cn/150078111d0.md): - Schemas [GroupPrivacy](https://9kmgmn3n5d.apifox.cn/150078112d0.md): - Schemas [GroupRoleTemplate](https://9kmgmn3n5d.apifox.cn/150078113d0.md): - Schemas [GroupPermissions](https://9kmgmn3n5d.apifox.cn/150078114d0.md): - Schemas [BanGroupMemberRequest](https://9kmgmn3n5d.apifox.cn/150078115d0.md): - Schemas [AddGroupGalleryImageRequest](https://9kmgmn3n5d.apifox.cn/150078116d0.md): - Schemas [GroupSearchSort](https://9kmgmn3n5d.apifox.cn/150078117d0.md): - Schemas [GroupUserVisibility](https://9kmgmn3n5d.apifox.cn/150078118d0.md): - Schemas [GroupPostVisibility](https://9kmgmn3n5d.apifox.cn/150078119d0.md): - Schemas [GroupJoinRequestAction](https://9kmgmn3n5d.apifox.cn/150078120d0.md): - Schemas [InviteMessageType](https://9kmgmn3n5d.apifox.cn/150078121d0.md): - Schemas [InstanceType](https://9kmgmn3n5d.apifox.cn/150078122d0.md): - Schemas [InstanceRegion](https://9kmgmn3n5d.apifox.cn/150078123d0.md): - Schemas [GroupAccessType](https://9kmgmn3n5d.apifox.cn/150078124d0.md): - Schemas [Region](https://9kmgmn3n5d.apifox.cn/150078125d0.md): - Schemas [PlayerModerationType](https://9kmgmn3n5d.apifox.cn/150078126d0.md): - Schemas [ModerateUserRequest](https://9kmgmn3n5d.apifox.cn/150078127d0.md): - Schemas [DeploymentGroup](https://9kmgmn3n5d.apifox.cn/150078128d0.md): - Schemas [InfoPushDataArticle](https://9kmgmn3n5d.apifox.cn/150078129d0.md): - Schemas [NotificationDetailVoteToKick](https://9kmgmn3n5d.apifox.cn/150078130d0.md): - Schemas [UserExists](https://9kmgmn3n5d.apifox.cn/150078131d0.md): - Schemas [Response](https://9kmgmn3n5d.apifox.cn/150078132d0.md): - Schemas [PastDisplayName](https://9kmgmn3n5d.apifox.cn/150078133d0.md): - Schemas [TwoFactorAuthCode](https://9kmgmn3n5d.apifox.cn/150078134d0.md): - Schemas [Verify2FAResult](https://9kmgmn3n5d.apifox.cn/150078135d0.md): - Schemas [TwoFactorEmailCode](https://9kmgmn3n5d.apifox.cn/150078136d0.md): - Schemas [Verify2FAEmailCodeResult](https://9kmgmn3n5d.apifox.cn/150078137d0.md): - Schemas [VerifyAuthTokenResult](https://9kmgmn3n5d.apifox.cn/150078138d0.md): - Schemas [License](https://9kmgmn3n5d.apifox.cn/150078139d0.md): - Schemas [TiliaStatus](https://9kmgmn3n5d.apifox.cn/150078140d0.md): - Schemas [ServiceQueueStats](https://9kmgmn3n5d.apifox.cn/155726211d0.md): - Schemas [TiliaTOS](https://9kmgmn3n5d.apifox.cn/150078141d0.md): - Schemas [Favorite](https://9kmgmn3n5d.apifox.cn/150078142d0.md): - Schemas [AddFavoriteRequest](https://9kmgmn3n5d.apifox.cn/150078143d0.md): - Schemas [UpdateFavoriteGroupRequest](https://9kmgmn3n5d.apifox.cn/150078144d0.md): - Schemas [FavoriteLimits](https://9kmgmn3n5d.apifox.cn/150078145d0.md): - Schemas [FileUploadURL](https://9kmgmn3n5d.apifox.cn/150078146d0.md): - Schemas [GroupInstance](https://9kmgmn3n5d.apifox.cn/150078147d0.md): - Schemas [CreateGroupInviteRequest](https://9kmgmn3n5d.apifox.cn/150078148d0.md): - Schemas [UpdateGroupMemberRequest](https://9kmgmn3n5d.apifox.cn/150078149d0.md): - Schemas [RespondGroupJoinRequest](https://9kmgmn3n5d.apifox.cn/150078150d0.md): - Schemas [InviteRequest](https://9kmgmn3n5d.apifox.cn/150078151d0.md): - Schemas [RequestInviteRequest](https://9kmgmn3n5d.apifox.cn/150078152d0.md): - Schemas [InviteResponse](https://9kmgmn3n5d.apifox.cn/150078153d0.md): - Schemas [UpdateInviteMessageRequest](https://9kmgmn3n5d.apifox.cn/150078154d0.md): - Schemas [InstanceShortNameResponse](https://9kmgmn3n5d.apifox.cn/150078155d0.md): - Schemas [APIConfigAnnouncement](https://9kmgmn3n5d.apifox.cn/150078156d0.md): - Schemas [PerformanceLimiterInfo](https://9kmgmn3n5d.apifox.cn/150078157d0.md): - Schemas [PlatformBuildInfo](https://9kmgmn3n5d.apifox.cn/150078158d0.md): - Schemas [ReportCategory](https://9kmgmn3n5d.apifox.cn/150078159d0.md): - Schemas [ReportReason](https://9kmgmn3n5d.apifox.cn/150078160d0.md): - Schemas [InfoPushDataArticleContent](https://9kmgmn3n5d.apifox.cn/150078161d0.md): - Schemas [UpdateUserNoteRequest](https://9kmgmn3n5d.apifox.cn/150078162d0.md): - Schemas [LimitedUnityPackage](https://9kmgmn3n5d.apifox.cn/150078163d0.md): - Schemas [WorldMetadata](https://9kmgmn3n5d.apifox.cn/150078164d0.md): - Schemas [WorldPublishStatus](https://9kmgmn3n5d.apifox.cn/150078165d0.md): - Schemas [ChangeUserTagsRequest](https://9kmgmn3n5d.apifox.cn/155726212d0.md): - Schemas [NotificationDetailInvite](https://9kmgmn3n5d.apifox.cn/150078166d0.md): - Schemas [UpdateUserBadgeRequest](https://9kmgmn3n5d.apifox.cn/155726213d0.md): - Schemas [NotificationDetailInviteResponse](https://9kmgmn3n5d.apifox.cn/150078167d0.md): - Schemas [NotificationDetailRequestInvite](https://9kmgmn3n5d.apifox.cn/150078168d0.md): - Schemas [NotificationDetailRequestInviteResponse](https://9kmgmn3n5d.apifox.cn/150078169d0.md): - Schemas [AccountDeletionLog](https://9kmgmn3n5d.apifox.cn/150078170d0.md): - Schemas [TransactionSteamInfo](https://9kmgmn3n5d.apifox.cn/150078171d0.md): - Schemas [Balance](https://9kmgmn3n5d.apifox.cn/150078172d0.md): - Schemas [FavoriteGroup](https://9kmgmn3n5d.apifox.cn/150078173d0.md): - Schemas [FavoriteGroupLimits](https://9kmgmn3n5d.apifox.cn/150078174d0.md): - Schemas [FileVersion](https://9kmgmn3n5d.apifox.cn/150078175d0.md): - Schemas [File](https://9kmgmn3n5d.apifox.cn/150078176d0.md): - Schemas [CreateFileRequest](https://9kmgmn3n5d.apifox.cn/150078177d0.md): - Schemas [CreateFileVersionRequest](https://9kmgmn3n5d.apifox.cn/150078178d0.md): - Schemas [FileAnalysis](https://9kmgmn3n5d.apifox.cn/150078179d0.md): - Schemas [FriendStatus](https://9kmgmn3n5d.apifox.cn/150078180d0.md): - Schemas [CreateGroupAnnouncementRequest](https://9kmgmn3n5d.apifox.cn/150078181d0.md): - Schemas [PaginatedGroupAuditLogEntryList](https://9kmgmn3n5d.apifox.cn/150078182d0.md): - Schemas [GroupGalleryImage](https://9kmgmn3n5d.apifox.cn/150078183d0.md): - Schemas [CreateGroupPostRequest](https://9kmgmn3n5d.apifox.cn/150078184d0.md): - Schemas [InstancePlatforms](https://9kmgmn3n5d.apifox.cn/150078185d0.md): - Schemas [PlayerModeration](https://9kmgmn3n5d.apifox.cn/150078186d0.md): - Schemas [APIHealth](https://9kmgmn3n5d.apifox.cn/150078187d0.md): - Schemas [TransactionSteamWalletInfo](https://9kmgmn3n5d.apifox.cn/150078188d0.md): - Schemas [ProductListingVariant](https://9kmgmn3n5d.apifox.cn/150078189d0.md): - Schemas [FileVersionUploadStatus](https://9kmgmn3n5d.apifox.cn/150078190d0.md): - Schemas [Notification](https://9kmgmn3n5d.apifox.cn/150078191d0.md): - Schemas [CreateGroupRequest](https://9kmgmn3n5d.apifox.cn/150078192d0.md): - Schemas [GroupAnnouncement](https://9kmgmn3n5d.apifox.cn/150078193d0.md): - Schemas [GroupMemberLimitedUser](https://9kmgmn3n5d.apifox.cn/150078194d0.md): - Schemas [GroupPermission](https://9kmgmn3n5d.apifox.cn/150078195d0.md): - Schemas [GroupPost](https://9kmgmn3n5d.apifox.cn/150078196d0.md): - Schemas [CreateGroupRoleRequest](https://9kmgmn3n5d.apifox.cn/150078197d0.md): - Schemas [UpdateGroupRoleRequest](https://9kmgmn3n5d.apifox.cn/150078198d0.md): - Schemas [InviteMessage](https://9kmgmn3n5d.apifox.cn/150078199d0.md): - Schemas [CreateInstanceRequest](https://9kmgmn3n5d.apifox.cn/150078200d0.md): - Schemas [Permission](https://9kmgmn3n5d.apifox.cn/150078201d0.md): - Schemas [APIConfigDownloadURLList](https://9kmgmn3n5d.apifox.cn/150078202d0.md): - Schemas [InfoPushDataClickable](https://9kmgmn3n5d.apifox.cn/150078203d0.md): - Schemas [InfoPushData](https://9kmgmn3n5d.apifox.cn/150078204d0.md): - Schemas [Submission](https://9kmgmn3n5d.apifox.cn/150078205d0.md): - Schemas [Badge](https://9kmgmn3n5d.apifox.cn/150078206d0.md): - Schemas [CreateAvatarRequest](https://9kmgmn3n5d.apifox.cn/150078207d0.md): - Schemas [UpdateAvatarRequest](https://9kmgmn3n5d.apifox.cn/150078208d0.md): - Schemas [Transaction](https://9kmgmn3n5d.apifox.cn/150078209d0.md): - Schemas [TokenBundle](https://9kmgmn3n5d.apifox.cn/150078210d0.md): - Schemas [FinishFileDataUploadRequest](https://9kmgmn3n5d.apifox.cn/150078211d0.md): - Schemas [CreateGroupGalleryRequest](https://9kmgmn3n5d.apifox.cn/150078212d0.md): - Schemas [UpdateGroupGalleryRequest](https://9kmgmn3n5d.apifox.cn/150078213d0.md): - Schemas [DynamicContentRow](https://9kmgmn3n5d.apifox.cn/150078214d0.md): - Schemas [representedGroup](https://9kmgmn3n5d.apifox.cn/150078215d0.md): - Schemas [FileData](https://9kmgmn3n5d.apifox.cn/150078216d0.md): - Schemas [GroupGallery](https://9kmgmn3n5d.apifox.cn/150078217d0.md): - Schemas [GroupRole](https://9kmgmn3n5d.apifox.cn/150078218d0.md): - Schemas [UpdateGroupRequest](https://9kmgmn3n5d.apifox.cn/150078219d0.md): - Schemas [GroupAuditLogEntry](https://9kmgmn3n5d.apifox.cn/150078220d0.md): - Schemas [ServiceStatus](https://9kmgmn3n5d.apifox.cn/155726214d0.md): - Schemas [APIConfigEvents](https://9kmgmn3n5d.apifox.cn/150078221d0.md): - Schemas [InfoPush](https://9kmgmn3n5d.apifox.cn/150078222d0.md): - Schemas [UpdateUserRequest](https://9kmgmn3n5d.apifox.cn/150078223d0.md): - Schemas [Feedback](https://9kmgmn3n5d.apifox.cn/150078224d0.md): - Schemas [CreateWorldRequest](https://9kmgmn3n5d.apifox.cn/150078225d0.md): - Schemas [UpdateWorldRequest](https://9kmgmn3n5d.apifox.cn/150078226d0.md): - Schemas [CurrentUserPresence](https://9kmgmn3n5d.apifox.cn/150078227d0.md): - Schemas [Subscription](https://9kmgmn3n5d.apifox.cn/150078228d0.md): - Schemas [LicenseGroup](https://9kmgmn3n5d.apifox.cn/150078229d0.md): - Schemas [Product](https://9kmgmn3n5d.apifox.cn/150078230d0.md): - Schemas [LimitedGroup](https://9kmgmn3n5d.apifox.cn/150078231d0.md): - Schemas [GroupLimitedMember](https://9kmgmn3n5d.apifox.cn/150078232d0.md): - Schemas [UserNote](https://9kmgmn3n5d.apifox.cn/150078233d0.md): - Schemas [UserSubscription](https://9kmgmn3n5d.apifox.cn/150078234d0.md): - Schemas [Print](https://9kmgmn3n5d.apifox.cn/151218793d0.md): - Schemas [GroupMember](https://9kmgmn3n5d.apifox.cn/150078235d0.md): - Schemas [LimitedUserGroups](https://9kmgmn3n5d.apifox.cn/150078236d0.md): - Schemas [GroupMyMember](https://9kmgmn3n5d.apifox.cn/150078237d0.md): - Schemas [Jam](https://9kmgmn3n5d.apifox.cn/150078238d0.md): - Schemas [UnityPackage](https://9kmgmn3n5d.apifox.cn/150078239d0.md): - Schemas [TransactionAgreement](https://9kmgmn3n5d.apifox.cn/150078240d0.md): - Schemas [LimitedUser](https://9kmgmn3n5d.apifox.cn/150078241d0.md): - Schemas [SentNotification](https://9kmgmn3n5d.apifox.cn/150078242d0.md): - Schemas [Avatar](https://9kmgmn3n5d.apifox.cn/150078243d0.md): - Schemas [LimitedWorld](https://9kmgmn3n5d.apifox.cn/150078244d0.md): - Schemas [ProductListing](https://9kmgmn3n5d.apifox.cn/150078245d0.md): - Schemas [Group](https://9kmgmn3n5d.apifox.cn/150078246d0.md): - Schemas [FavoritedWorld](https://9kmgmn3n5d.apifox.cn/150078247d0.md): - Schemas [World](https://9kmgmn3n5d.apifox.cn/150078248d0.md): - Schemas [Instance](https://9kmgmn3n5d.apifox.cn/150078249d0.md): - Schemas [User](https://9kmgmn3n5d.apifox.cn/150078250d0.md): - Schemas [APIConfigConstants](https://9kmgmn3n5d.apifox.cn/150078251d0.md): - Schemas [FileAnalysisAvatarStats](https://9kmgmn3n5d.apifox.cn/150078252d0.md): - Schemas [CurrentUser](https://9kmgmn3n5d.apifox.cn/150078253d0.md): - Schemas [APIConfig](https://9kmgmn3n5d.apifox.cn/150078254d0.md): - Response [UserExistsResponse](https://9kmgmn3n5d.apifox.cn/150078255d0.md): - Response [VerifyAuthTokenResponse](https://9kmgmn3n5d.apifox.cn/150078256d0.md): - Response [DeleteUserResponse](https://9kmgmn3n5d.apifox.cn/150078257d0.md): - Response [AvatarResponse](https://9kmgmn3n5d.apifox.cn/150078258d0.md): - Response [CurrentUserResponse](https://9kmgmn3n5d.apifox.cn/150078259d0.md): - Response [TransactionResponse](https://9kmgmn3n5d.apifox.cn/150078260d0.md): - Response [AvatarImpostorEnqueueResponse](https://9kmgmn3n5d.apifox.cn/155726215d0.md): - Response [LicenseGroupResponse](https://9kmgmn3n5d.apifox.cn/150078261d0.md): - Response [AvatarImpostorQueueStatsResponse](https://9kmgmn3n5d.apifox.cn/155726216d0.md): - Response [ProductListingResponse](https://9kmgmn3n5d.apifox.cn/150078262d0.md): - Response [TiliaStatusResponse](https://9kmgmn3n5d.apifox.cn/150078263d0.md): - Response [TiliaTOSResponse](https://9kmgmn3n5d.apifox.cn/150078264d0.md): - Response [BalanceResponse](https://9kmgmn3n5d.apifox.cn/150078265d0.md): - Response [FavoriteResponse](https://9kmgmn3n5d.apifox.cn/150078266d0.md): - Response [FavoriteGroupResponse](https://9kmgmn3n5d.apifox.cn/150078267d0.md): - Response [FavoriteLimitsResponse](https://9kmgmn3n5d.apifox.cn/150078268d0.md): - Response [FileAnalysisResponse](https://9kmgmn3n5d.apifox.cn/150078269d0.md): - Response [GroupResponse](https://9kmgmn3n5d.apifox.cn/150078270d0.md): - Response [GroupAnnouncementResponse](https://9kmgmn3n5d.apifox.cn/150078271d0.md): - Response [GroupAuditLogListResponse](https://9kmgmn3n5d.apifox.cn/150078272d0.md): - Response [GroupMemberResponse](https://9kmgmn3n5d.apifox.cn/150078273d0.md): - Response [GroupGalleryResponse](https://9kmgmn3n5d.apifox.cn/150078274d0.md): - Response [GroupGalleryImageResponse](https://9kmgmn3n5d.apifox.cn/150078275d0.md): - Response [GroupLimitedMemberResponse](https://9kmgmn3n5d.apifox.cn/150078276d0.md): - Response [GroupRoleIDListResponse](https://9kmgmn3n5d.apifox.cn/150078277d0.md): - Response [GroupPostResponse](https://9kmgmn3n5d.apifox.cn/150078278d0.md): - Response [GroupRoleResponse](https://9kmgmn3n5d.apifox.cn/150078279d0.md): - Response [InviteMessageResponse](https://9kmgmn3n5d.apifox.cn/150078280d0.md): - Response [InstanceResponse](https://9kmgmn3n5d.apifox.cn/150078281d0.md): - Response [InstanceShortNameResponse](https://9kmgmn3n5d.apifox.cn/150078282d0.md): - Response [PermissionResponse](https://9kmgmn3n5d.apifox.cn/150078283d0.md): - Response [PlayerModerationResponse](https://9kmgmn3n5d.apifox.cn/150078284d0.md): - Response [APIConfigResponse](https://9kmgmn3n5d.apifox.cn/150078285d0.md): - Response [PrintResponse](https://9kmgmn3n5d.apifox.cn/151218794d0.md): - Response [JamResponse](https://9kmgmn3n5d.apifox.cn/150078286d0.md): - Response [UserResponse](https://9kmgmn3n5d.apifox.cn/150078287d0.md): - Response [UserNoteResponse](https://9kmgmn3n5d.apifox.cn/150078288d0.md): - Response [WorldResponse](https://9kmgmn3n5d.apifox.cn/150078289d0.md): - Response [WorldMetadataResponse](https://9kmgmn3n5d.apifox.cn/150078290d0.md): - Response [WorldPublishStatusResponse](https://9kmgmn3n5d.apifox.cn/150078291d0.md): - Response [CurrentUserLoginResponse](https://9kmgmn3n5d.apifox.cn/150078292d0.md): - Response [UserTagInvalidError](https://9kmgmn3n5d.apifox.cn/155726217d0.md): - Response [Verify2FAResponse](https://9kmgmn3n5d.apifox.cn/150078293d0.md): - Response [Verify2FAEmailCodeResponse](https://9kmgmn3n5d.apifox.cn/150078294d0.md): - Response [AvatarListResponse](https://9kmgmn3n5d.apifox.cn/150078295d0.md): - Response [TransactionListResponse](https://9kmgmn3n5d.apifox.cn/150078296d0.md): - Response [UserSubscriptionListResponse](https://9kmgmn3n5d.apifox.cn/150078297d0.md): - Response [SubscriptionListResponse](https://9kmgmn3n5d.apifox.cn/150078298d0.md): - Response [ProductListingListResponse](https://9kmgmn3n5d.apifox.cn/150078299d0.md): - Response [TokenBundleListResponse](https://9kmgmn3n5d.apifox.cn/150078300d0.md): - Response [FavoriteListResponse](https://9kmgmn3n5d.apifox.cn/150078301d0.md): - Response [FavoriteGroupListResponse](https://9kmgmn3n5d.apifox.cn/150078302d0.md): - Response [FileListResponse](https://9kmgmn3n5d.apifox.cn/150078303d0.md): - Response [LimitedUserListResponse](https://9kmgmn3n5d.apifox.cn/150078304d0.md): - Response [LimitedGroupListResponse](https://9kmgmn3n5d.apifox.cn/150078305d0.md): - Response [GroupMemberListResponse](https://9kmgmn3n5d.apifox.cn/150078306d0.md): - Response [GroupGalleryImageListResponse](https://9kmgmn3n5d.apifox.cn/150078307d0.md): - Response [GroupInstanceListResponse](https://9kmgmn3n5d.apifox.cn/150078308d0.md): - Response [GroupPermissionListResponse](https://9kmgmn3n5d.apifox.cn/150078309d0.md): - Response [GroupRoleListResponse](https://9kmgmn3n5d.apifox.cn/150078310d0.md): - Response [InviteMessageListResponse](https://9kmgmn3n5d.apifox.cn/150078311d0.md): - Response [NotificationListResponse](https://9kmgmn3n5d.apifox.cn/150078312d0.md): - Response [PlayerModerationListResponse](https://9kmgmn3n5d.apifox.cn/150078313d0.md): - Response [CurrentOnlineUsersResponse](https://9kmgmn3n5d.apifox.cn/150078314d0.md): - Response [SystemTimeResponse](https://9kmgmn3n5d.apifox.cn/150078315d0.md): - Response [PrintListResponse](https://9kmgmn3n5d.apifox.cn/151218795d0.md): - Response [JamListResponse](https://9kmgmn3n5d.apifox.cn/150078316d0.md): - Response [SubmissionListResponse](https://9kmgmn3n5d.apifox.cn/150078317d0.md): - Response [LimitedUserGroupListResponse](https://9kmgmn3n5d.apifox.cn/150078318d0.md): - Response [GroupListResponse](https://9kmgmn3n5d.apifox.cn/150078319d0.md): - Response [FeedbackListResponse](https://9kmgmn3n5d.apifox.cn/150078320d0.md): - Response [UserNoteListResponse](https://9kmgmn3n5d.apifox.cn/150078321d0.md): - Response [LimitedWorldListResponse](https://9kmgmn3n5d.apifox.cn/150078322d0.md): - Response [FavoritedWorldListResponse](https://9kmgmn3n5d.apifox.cn/150078323d0.md): - Response [FileUploadURLResponse](https://9kmgmn3n5d.apifox.cn/150078324d0.md): - Response [NotificationResponse](https://9kmgmn3n5d.apifox.cn/150078325d0.md): - Response [FriendStatusResponse](https://9kmgmn3n5d.apifox.cn/150078326d0.md): - Response [InviteMessageGetNegativeSlotError](https://9kmgmn3n5d.apifox.cn/150078327d0.md): - Response [APIHealthResponse](https://9kmgmn3n5d.apifox.cn/150078328d0.md): - Response [UserGroupInstanceListResponse](https://9kmgmn3n5d.apifox.cn/150078329d0.md): - Response [GroupPostsResponse](https://9kmgmn3n5d.apifox.cn/151218796d0.md): - Response [MissingParameterError](https://9kmgmn3n5d.apifox.cn/150078330d0.md): - Response [MissingCredentialsError](https://9kmgmn3n5d.apifox.cn/150078331d0.md): - Response [LogoutSuccess](https://9kmgmn3n5d.apifox.cn/150078332d0.md): - Response [AvatarSeeOtherUserCurrentAvatarError](https://9kmgmn3n5d.apifox.cn/150078333d0.md): - Response [FeaturedSetNotAdminError](https://9kmgmn3n5d.apifox.cn/150078334d0.md): - Response [AvatarNotTaggedAsFallbackError](https://9kmgmn3n5d.apifox.cn/150078335d0.md): - Response [AvatarSeeOtherUserFavoritesError](https://9kmgmn3n5d.apifox.cn/150078336d0.md): - Response [FavoriteAddAlreadyFavoritedError](https://9kmgmn3n5d.apifox.cn/150078337d0.md): - Response [FavoriteAddNotFriendsError](https://9kmgmn3n5d.apifox.cn/150078338d0.md): - Response [FavoriteNotFoundError](https://9kmgmn3n5d.apifox.cn/150078339d0.md): - Response [FavoriteRemovedSuccess](https://9kmgmn3n5d.apifox.cn/150078340d0.md): - Response [FavoriteGroupClearedSuccess](https://9kmgmn3n5d.apifox.cn/150078341d0.md): - Response [FileNotFoundError](https://9kmgmn3n5d.apifox.cn/150078342d0.md): - Response [FileDeletedError](https://9kmgmn3n5d.apifox.cn/150078343d0.md): - Response [FileVersionDeleteInitialError](https://9kmgmn3n5d.apifox.cn/150078344d0.md): - Response [FileVersionDeleteMiddleError](https://9kmgmn3n5d.apifox.cn/150078345d0.md): - Response [FileUploadAlreadyFinishedError](https://9kmgmn3n5d.apifox.cn/150078346d0.md): - Response [FileVersionUploadStatusResponse](https://9kmgmn3n5d.apifox.cn/150078347d0.md): - Response [AnalysisNotYetAvailableError](https://9kmgmn3n5d.apifox.cn/150078348d0.md): - Response [FriendBadRequestError](https://9kmgmn3n5d.apifox.cn/150078349d0.md): - Response [UserDoesntExistError](https://9kmgmn3n5d.apifox.cn/150078350d0.md): - Response [DeleteFriendSuccess](https://9kmgmn3n5d.apifox.cn/150078351d0.md): - Response [DeleteFriendRequestError](https://9kmgmn3n5d.apifox.cn/150078352d0.md): - Response [UnfriendSuccess](https://9kmgmn3n5d.apifox.cn/150078353d0.md): - Response [NotFriendsError](https://9kmgmn3n5d.apifox.cn/150078354d0.md): - Response [GroupNotFoundError](https://9kmgmn3n5d.apifox.cn/150078355d0.md): - Response [DeleteGroupSuccess](https://9kmgmn3n5d.apifox.cn/150078356d0.md): - Response [DeleteGroupAnnouncementSuccess](https://9kmgmn3n5d.apifox.cn/150078357d0.md): - Response [NoPermission](https://9kmgmn3n5d.apifox.cn/150078358d0.md): - Response [BanGroupMemberBadRequestError](https://9kmgmn3n5d.apifox.cn/150078359d0.md): - Response [DeleteGroupGallerySuccess](https://9kmgmn3n5d.apifox.cn/150078360d0.md): - Response [DeleteGroupGalleryImageSuccess](https://9kmgmn3n5d.apifox.cn/150078361d0.md): - Response [GroupGalleryImageDeleteForbiddenError](https://9kmgmn3n5d.apifox.cn/150078362d0.md): - Response [GroupNotMemberError](https://9kmgmn3n5d.apifox.cn/150078363d0.md): - Response [GroupInviteBadRequestError](https://9kmgmn3n5d.apifox.cn/150078364d0.md): - Response [GroupInviteForbiddenError](https://9kmgmn3n5d.apifox.cn/150078365d0.md): - Response [DeleteGroupInviteBadRequestError](https://9kmgmn3n5d.apifox.cn/150078366d0.md): - Response [GroupAlreadyMemberError](https://9kmgmn3n5d.apifox.cn/150078367d0.md): - Response [UsersInvalidSearchError](https://9kmgmn3n5d.apifox.cn/150078368d0.md): - Response [GroupPostResponseSuccess](https://9kmgmn3n5d.apifox.cn/150078369d0.md): - Response [GroupJoinRequestResponseBadRequestError](https://9kmgmn3n5d.apifox.cn/150078370d0.md): - Response [SendNotificationResponse](https://9kmgmn3n5d.apifox.cn/150078371d0.md): - Response [InviteMustBeFriendsError](https://9kmgmn3n5d.apifox.cn/150078372d0.md): - Response [InstanceNotFoundError](https://9kmgmn3n5d.apifox.cn/150078373d0.md): - Response [InviteMessageInvalidSlotNumberError](https://9kmgmn3n5d.apifox.cn/150078374d0.md): - Response [NotAuthorizedActionError](https://9kmgmn3n5d.apifox.cn/150078375d0.md): - Response [InviteMessageGetTooHighSlotError](https://9kmgmn3n5d.apifox.cn/150078376d0.md): - Response [InviteMessageUpdateRateLimitError](https://9kmgmn3n5d.apifox.cn/150078377d0.md): - Response [InviteMessageNoEntryForSlotError](https://9kmgmn3n5d.apifox.cn/150078378d0.md): - Response [InstanceCloseForbiddenError](https://9kmgmn3n5d.apifox.cn/150078379d0.md): - Response [NotificationNotFoundError](https://9kmgmn3n5d.apifox.cn/150078380d0.md): - Response [FriendSuccess](https://9kmgmn3n5d.apifox.cn/150078381d0.md): - Response [AcceptFriendRequestError](https://9kmgmn3n5d.apifox.cn/150078382d0.md): - Response [ClearNotificationsSuccess](https://9kmgmn3n5d.apifox.cn/150078383d0.md): - Response [InvalidAdminCredentialsError](https://9kmgmn3n5d.apifox.cn/150078384d0.md): - Response [PlayerModerationClearAllSuccess](https://9kmgmn3n5d.apifox.cn/150078385d0.md): - Response [PlayerModerationUnmoderatedSuccess](https://9kmgmn3n5d.apifox.cn/150078386d0.md): - Response [DownloadSourceCodeAccessError](https://9kmgmn3n5d.apifox.cn/150078387d0.md): - Response [JamNotFoundError](https://9kmgmn3n5d.apifox.cn/150078388d0.md): - Response [UserMustBeOwnError](https://9kmgmn3n5d.apifox.cn/150078389d0.md): - Response [WorldCreateNotAllowedYetError](https://9kmgmn3n5d.apifox.cn/150078390d0.md): - Response [UnableToRequestOtherUsersPrintsError](https://9kmgmn3n5d.apifox.cn/151218797d0.md): - Response [WorldSeeOtherUserFavoritesError](https://9kmgmn3n5d.apifox.cn/150078391d0.md): - Response [WorldSeeOtherUserRecentsError](https://9kmgmn3n5d.apifox.cn/150078392d0.md): - Response [WorldNotFoundError](https://9kmgmn3n5d.apifox.cn/150078393d0.md): - Response [AvatarNotFoundError](https://9kmgmn3n5d.apifox.cn/150078394d0.md): - Response [InviteResponse400Error](https://9kmgmn3n5d.apifox.cn/150078395d0.md): - Response [FileResponse](https://9kmgmn3n5d.apifox.cn/150078396d0.md): - Response [PermissionListResponse](https://9kmgmn3n5d.apifox.cn/150078397d0.md): - Response [InfoPushListResponse](https://9kmgmn3n5d.apifox.cn/150078398d0.md):