getSidebarCategoryOrderForTeamForUserWithHttpInfo method
Get user's sidebar category order
Returns the order of the sidebar categories for a user on the given team as an array of IDs. Minimum server version: 5.26 ##### Permissions Must be authenticated and have the list_team_channels
permission.
Note: This method returns the HTTP Response
.
Parameters:
Implementation
Future<Response> getSidebarCategoryOrderForTeamForUserWithHttpInfo(
String teamId,
String userId,
) async {
// ignore: prefer_const_declarations
final path = r'/users/{user_id}/teams/{team_id}/channels/categories/order'
.replaceAll('{team_id}', teamId)
.replaceAll('{user_id}', userId);
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <MmQueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'GET',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}