public async Task <ActionResult> BroadcastToUser(string hubName, string userId, [FromBody] API_V1Message message)
 {
     return(await SendCoreAsync(mappingService.GetConnectionIdsWithUserId(hubName, userId), message));
 }