public IActionResult Authenticate([FromBody] AuthenticationRequest model)
        {
            string token = Orchestrator.Authenticate(model.Username, model.Password);

            return(Ok(token));
        }