getSidebarCategoriesForTeamForUserWithHttpInfo method

Future<Response> getSidebarCategoriesForTeamForUserWithHttpInfo(
  1. String teamId,
  2. String userId
)

Get user's sidebar categories

Get a list of sidebar categories that will appear in the user's sidebar on the given team, including a list of channel IDs in each category. Minimum server version: 5.26 ##### Permissions Must be authenticated and have the list_team_channels permission.

Note: This method returns the HTTP Response.

Parameters:

  • String teamId (required): Team GUID

  • String userId (required): User GUID

Implementation

Future<Response> getSidebarCategoriesForTeamForUserWithHttpInfo(
  String teamId,
  String userId,
) async {
  // ignore: prefer_const_declarations
  final path = r'/users/{user_id}/teams/{team_id}/channels/categories'
      .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,
  );
}