getTeamMemberWithHttpInfo method
Get a team member
Get a team member on the system. ##### Permissions Must be authenticated and have the view_team
permission.
Note: This method returns the HTTP Response
.
Parameters:
Implementation
Future<Response> getTeamMemberWithHttpInfo(
String teamId,
String userId,
) async {
// ignore: prefer_const_declarations
final path = r'/teams/{team_id}/members/{user_id}'.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,
);
}