private Map<String, Object> setMemberResponse(
     UserGroupAssociation userGroupAssociation, String status) {
   Map<String, Object> member = new HashMap<String, Object>();
   member.put(
       EMAIL_ID,
       userGroupAssociation.getUser().getIdentities() != null
           ? userGroupAssociation.getUser().getIdentities().iterator().next().getExternalId()
           : null);
   member.put(_GOORU_UID, userGroupAssociation.getUser().getPartyUid());
   member.put(USER_NAME, userGroupAssociation.getUser().getUsername());
   member.put(
       PROFILE_IMG_URL,
       this.getUserManagementService().buildUserProfileImageUrl(userGroupAssociation.getUser()));
   member.put(STATUS, status);
   return member;
 }