@@ -1513,7 +1513,7 @@ public class Example {
15131513
15141514<a name =" getGroupInvites " ></a >
15151515# ** getGroupInvites**
1516- > List< ; GroupMember> ; getGroupInvites(groupId)
1516+ > List< ; GroupMember> ; getGroupInvites(groupId, n, offset )
15171517
15181518Get Group Invites Sent
15191519
@@ -1542,8 +1542,10 @@ public class Example {
15421542
15431543 GroupsApi apiInstance = new GroupsApi (defaultClient);
15441544 String groupId = " grp_00000000-0000-0000-0000-000000000000" ; // String | Must be a valid group ID.
1545+ Integer n = 60 ; // Integer | The number of objects to return.
1546+ Integer offset = 56 ; // Integer | A zero-based offset from the default object sorting from where search results start.
15451547 try {
1546- List<GroupMember > result = apiInstance. getGroupInvites(groupId);
1548+ List<GroupMember > result = apiInstance. getGroupInvites(groupId, n, offset );
15471549 System . out. println(result);
15481550 } catch (ApiException e) {
15491551 System . err. println(" Exception when calling GroupsApi#getGroupInvites" );
@@ -1561,6 +1563,8 @@ public class Example {
15611563| Name | Type | Description | Notes |
15621564| ------------- | ------------- | ------------- | -------------|
15631565| ** groupId** | ** String** | Must be a valid group ID. | |
1566+ | ** n** | ** Integer** | The number of objects to return. | [ optional] [ default to 60] |
1567+ | ** offset** | ** Integer** | A zero-based offset from the default object sorting from where search results start. | [ optional] |
15641568
15651569### Return type
15661570
@@ -1808,7 +1812,7 @@ public class Example {
18081812
18091813<a name =" getGroupRequests " ></a >
18101814# ** getGroupRequests**
1811- > List< ; GroupMember> ; getGroupRequests(groupId)
1815+ > List< ; GroupMember> ; getGroupRequests(groupId, n, offset )
18121816
18131817Get Group Join Requests
18141818
@@ -1837,8 +1841,10 @@ public class Example {
18371841
18381842 GroupsApi apiInstance = new GroupsApi (defaultClient);
18391843 String groupId = " grp_00000000-0000-0000-0000-000000000000" ; // String | Must be a valid group ID.
1844+ Integer n = 60 ; // Integer | The number of objects to return.
1845+ Integer offset = 56 ; // Integer | A zero-based offset from the default object sorting from where search results start.
18401846 try {
1841- List<GroupMember > result = apiInstance. getGroupRequests(groupId);
1847+ List<GroupMember > result = apiInstance. getGroupRequests(groupId, n, offset );
18421848 System . out. println(result);
18431849 } catch (ApiException e) {
18441850 System . err. println(" Exception when calling GroupsApi#getGroupRequests" );
@@ -1856,6 +1862,8 @@ public class Example {
18561862| Name | Type | Description | Notes |
18571863| ------------- | ------------- | ------------- | -------------|
18581864| ** groupId** | ** String** | Must be a valid group ID. | |
1865+ | ** n** | ** Integer** | The number of objects to return. | [ optional] [ default to 60] |
1866+ | ** offset** | ** Integer** | A zero-based offset from the default object sorting from where search results start. | [ optional] |
18591867
18601868### Return type
18611869
0 commit comments