private IActionResult Handler(Guid identification)
        {
            var endpoint = _endpointService.GetEndpoint(identification);

            if (endpoint == null)
            {
                return(NotFound());
            }
            _endpointService.AddCall(identification, new Call(HttpContext));
            return(Ok());
        }