public IHttpActionResult GetGroupConnectorsForOrg(int organizationId, int initiativeId)
        {
            try
            {
                var groupConnectors = _groupConnectorService.GetGroupConnectorsByOrganization(organizationId, initiativeId);

                if (groupConnectors == null)
                {
                    return(NotFound());
                }
                return(Ok(groupConnectors));
            }
            catch (Exception e)
            {
                const string msg = "GoVolunteerController.GetGroupConnectorsForOrg";
                logger.Error(msg, e);
                var apiError = new ApiErrorDto(msg, e);
                throw new HttpResponseException(apiError.HttpResponseMessage);
            }
        }