@@ -793,11 +793,11 @@ ApiResponse<[**GetTikTokCreatorInfo200Response**](GetTikTokCreatorInfo200Respons
793793
794794## listAccounts
795795
796- > ListAccounts200Response listAccounts(profileId, platform, includeOverLimit)
796+ > ListAccounts200Response listAccounts(profileId, platform, includeOverLimit, page, limit )
797797
798798List accounts
799799
800- Returns connected social accounts. Only includes accounts within the plan limit by default. Follower data requires analytics add-on.
800+ Returns connected social accounts. Only includes accounts within the plan limit by default. Follower data requires analytics add-on. Supports optional server-side pagination via page/limit params. When omitted, returns all accounts (backward-compatible).
801801
802802### Example
803803
@@ -823,8 +823,10 @@ public class Example {
823823 String profileId = " profileId_example" ; // String | Filter accounts by profile ID
824824 String platform = " platform_example" ; // String | Filter accounts by platform (e.g. \"instagram\", \"twitter\").
825825 Boolean includeOverLimit = false ; // Boolean | When true, includes accounts from over-limit profiles.
826+ Integer page = 56 ; // Integer | Page number (1-based). When provided with limit, enables server-side pagination. Omit for all accounts.
827+ Integer limit = 56 ; // Integer | Page size. Required alongside page for pagination.
826828 try {
827- ListAccounts200Response result = apiInstance. listAccounts(profileId, platform, includeOverLimit);
829+ ListAccounts200Response result = apiInstance. listAccounts(profileId, platform, includeOverLimit, page, limit );
828830 System . out. println(result);
829831 } catch (ApiException e) {
830832 System . err. println(" Exception when calling AccountsApi#listAccounts" );
@@ -845,6 +847,8 @@ public class Example {
845847| ** profileId** | ** String** | Filter accounts by profile ID | [ optional] |
846848| ** platform** | ** String** | Filter accounts by platform (e.g. \& quot;instagram\& quot;, \& quot;twitter\& quot;). | [ optional] |
847849| ** includeOverLimit** | ** Boolean** | When true, includes accounts from over-limit profiles. | [ optional] [ default to false] |
850+ | ** page** | ** Integer** | Page number (1-based). When provided with limit, enables server-side pagination. Omit for all accounts. | [ optional] |
851+ | ** limit** | ** Integer** | Page size. Required alongside page for pagination. | [ optional] |
848852
849853### Return type
850854
@@ -863,16 +867,16 @@ public class Example {
863867### HTTP response details
864868| Status code | Description | Response headers |
865869| -------------| -------------| ------------------|
866- | ** 200** | Accounts | - |
870+ | ** 200** | Accounts (with optional pagination) | - |
867871| ** 401** | Unauthorized | - |
868872
869873## listAccountsWithHttpInfo
870874
871- > ApiResponse<ListAccounts200Response > listAccounts listAccountsWithHttpInfo(profileId, platform, includeOverLimit)
875+ > ApiResponse<ListAccounts200Response > listAccounts listAccountsWithHttpInfo(profileId, platform, includeOverLimit, page, limit )
872876
873877List accounts
874878
875- Returns connected social accounts. Only includes accounts within the plan limit by default. Follower data requires analytics add-on.
879+ Returns connected social accounts. Only includes accounts within the plan limit by default. Follower data requires analytics add-on. Supports optional server-side pagination via page/limit params. When omitted, returns all accounts (backward-compatible).
876880
877881### Example
878882
@@ -899,8 +903,10 @@ public class Example {
899903 String profileId = " profileId_example" ; // String | Filter accounts by profile ID
900904 String platform = " platform_example" ; // String | Filter accounts by platform (e.g. \"instagram\", \"twitter\").
901905 Boolean includeOverLimit = false ; // Boolean | When true, includes accounts from over-limit profiles.
906+ Integer page = 56 ; // Integer | Page number (1-based). When provided with limit, enables server-side pagination. Omit for all accounts.
907+ Integer limit = 56 ; // Integer | Page size. Required alongside page for pagination.
902908 try {
903- ApiResponse<ListAccounts200Response > response = apiInstance. listAccountsWithHttpInfo(profileId, platform, includeOverLimit);
909+ ApiResponse<ListAccounts200Response > response = apiInstance. listAccountsWithHttpInfo(profileId, platform, includeOverLimit, page, limit );
904910 System . out. println(" Status code: " + response. getStatusCode());
905911 System . out. println(" Response headers: " + response. getHeaders());
906912 System . out. println(" Response body: " + response. getData());
@@ -923,6 +929,8 @@ public class Example {
923929| ** profileId** | ** String** | Filter accounts by profile ID | [ optional] |
924930| ** platform** | ** String** | Filter accounts by platform (e.g. \& quot;instagram\& quot;, \& quot;twitter\& quot;). | [ optional] |
925931| ** includeOverLimit** | ** Boolean** | When true, includes accounts from over-limit profiles. | [ optional] [ default to false] |
932+ | ** page** | ** Integer** | Page number (1-based). When provided with limit, enables server-side pagination. Omit for all accounts. | [ optional] |
933+ | ** limit** | ** Integer** | Page size. Required alongside page for pagination. | [ optional] |
926934
927935### Return type
928936
@@ -941,7 +949,7 @@ ApiResponse<[**ListAccounts200Response**](ListAccounts200Response.md)>
941949### HTTP response details
942950| Status code | Description | Response headers |
943951| -------------| -------------| ------------------|
944- | ** 200** | Accounts | - |
952+ | ** 200** | Accounts (with optional pagination) | - |
945953| ** 401** | Unauthorized | - |
946954
947955
0 commit comments