getChannelMembersTimezonesWithHttpInfo method
Get timezones in a channel
Get a list of timezones for the users who are in this channel. Minimum server version: 5.6 ##### Permissions Must have the read_channel
permission.
Note: This method returns the HTTP Response
.
Parameters:
- String channelId (required): Channel GUID
Implementation
Future<Response> getChannelMembersTimezonesWithHttpInfo(
String channelId,
) async {
// ignore: prefer_const_declarations
final path = r'/channels/{channel_id}/timezones'.replaceAll('{channel_id}', channelId);
// 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,
);
}