@@ -24,6 +24,7 @@ All URIs are relative to *https://api.vrchat.cloud/api/1*
2424| [ ** getGroupAuditLogs** ] ( GroupsApi.md#getGroupAuditLogs ) | ** GET** /groups/{groupId}/auditLogs | Get Group Audit Logs |
2525| [ ** getGroupBans** ] ( GroupsApi.md#getGroupBans ) | ** GET** /groups/{groupId}/bans | Get Group Bans |
2626| [ ** getGroupGalleryImages** ] ( GroupsApi.md#getGroupGalleryImages ) | ** GET** /groups/{groupId}/galleries/{groupGalleryId} | Get Group Gallery Images |
27+ | [ ** getGroupInstances** ] ( GroupsApi.md#getGroupInstances ) | ** GET** /groups/{groupId}/instances | Get Group Instances |
2728| [ ** getGroupInvites** ] ( GroupsApi.md#getGroupInvites ) | ** GET** /groups/{groupId}/invites | Get Group Invites Sent |
2829| [ ** getGroupMember** ] ( GroupsApi.md#getGroupMember ) | ** GET** /groups/{groupId}/members/{userId} | Get Group Member |
2930| [ ** getGroupMembers** ] ( GroupsApi.md#getGroupMembers ) | ** GET** /groups/{groupId}/members | List Group Members |
@@ -263,6 +264,7 @@ public class Example {
263264| Status code | Description | Response headers |
264265| -------------| -------------| ------------------|
265266| ** 200** | Returns a list of GroupMember objects. | - |
267+ | ** 400** | Bad request error response when banning a user | - |
266268| ** 401** | Error response due to missing auth cookie. | - |
267269| ** 404** | Error response when trying to perform operations on a non-existing group. | - |
268270
@@ -1512,6 +1514,77 @@ public class Example {
15121514| ** 401** | Error response due to missing auth cookie. | - |
15131515| ** 404** | Error response when trying to perform operations on a non-existing group. | - |
15141516
1517+ <a name =" getGroupInstances " ></a >
1518+ # ** getGroupInstances**
1519+ > List< ; GroupInstance> ; getGroupInstances(groupId)
1520+
1521+ Get Group Instances
1522+
1523+ Returns a list of group instances
1524+
1525+ ### Example
1526+ ``` java
1527+ // Import classes:
1528+ import io.github.vrchatapi.ApiClient ;
1529+ import io.github.vrchatapi.ApiException ;
1530+ import io.github.vrchatapi.Configuration ;
1531+ import io.github.vrchatapi.auth.* ;
1532+ import io.github.vrchatapi.models.* ;
1533+ import io.github.vrchatapi.api.GroupsApi ;
1534+
1535+ public class Example {
1536+ public static void main (String [] args ) {
1537+ ApiClient defaultClient = Configuration . getDefaultApiClient();
1538+ defaultClient. setBasePath(" https://api.vrchat.cloud/api/1" );
1539+
1540+ // Configure API key authorization: authCookie
1541+ ApiKeyAuth authCookie = (ApiKeyAuth ) defaultClient. getAuthentication(" authCookie" );
1542+ authCookie. setApiKey(" YOUR API KEY" );
1543+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
1544+ // authCookie.setApiKeyPrefix("Token");
1545+
1546+ GroupsApi apiInstance = new GroupsApi (defaultClient);
1547+ String groupId = " grp_00000000-0000-0000-0000-000000000000" ; // String | Must be a valid group ID.
1548+ try {
1549+ List<GroupInstance > result = apiInstance. getGroupInstances(groupId);
1550+ System . out. println(result);
1551+ } catch (ApiException e) {
1552+ System . err. println(" Exception when calling GroupsApi#getGroupInstances" );
1553+ System . err. println(" Status code: " + e. getCode());
1554+ System . err. println(" Reason: " + e. getResponseBody());
1555+ System . err. println(" Response headers: " + e. getResponseHeaders());
1556+ e. printStackTrace();
1557+ }
1558+ }
1559+ }
1560+ ```
1561+
1562+ ### Parameters
1563+
1564+ | Name | Type | Description | Notes |
1565+ | ------------- | ------------- | ------------- | -------------|
1566+ | ** groupId** | ** String** | Must be a valid group ID. | |
1567+
1568+ ### Return type
1569+
1570+ [ ** List< ; GroupInstance> ; ** ] ( GroupInstance.md )
1571+
1572+ ### Authorization
1573+
1574+ [ authCookie] ( ../README.md#authCookie )
1575+
1576+ ### HTTP request headers
1577+
1578+ - ** Content-Type** : Not defined
1579+ - ** Accept** : application/json
1580+
1581+ ### HTTP response details
1582+ | Status code | Description | Response headers |
1583+ | -------------| -------------| ------------------|
1584+ | ** 200** | Returns a list of GroupInstance objects. | - |
1585+ | ** 401** | Error response due to missing auth cookie. | - |
1586+ | ** 404** | Error response when trying to perform operations on a non-existing group. | - |
1587+
15151588<a name =" getGroupInvites " ></a >
15161589# ** getGroupInvites**
15171590> List< ; GroupMember> ; getGroupInvites(groupId, n, offset)
0 commit comments