getThreadMentionCountsByChannel method

Future<void> getThreadMentionCountsByChannel(
  1. String userId,
  2. String teamId
)

Get all unread mention counts from followed threads, per-channel

Get all unread mention counts from followed threads Minimum server version: 5.29 ##### Permissions Must be logged in as the user or have edit_other_users permission.

Parameters:

  • String userId (required): The ID of the user. This can also be "me" which will point to the current user.

  • String teamId (required): The ID of the team in which the thread is.

Implementation

Future<void> getThreadMentionCountsByChannel(
  String userId,
  String teamId,
) async {
  final response = await getThreadMentionCountsByChannelWithHttpInfo(
    userId,
    teamId,
  );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw MmApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}