Hello,
I create a new RingGroup in C#
like:
RingGroup rg = PhoneSystem.Root.GetTenants()[0].CreateRingGroup(Program.NUMBER1);
rg.Name = "Call001";
rg.RingTime = 1;
rg.RingStrategy = StrategyType.Hunt;
rg.Save();
that works.
But now I want add a "no answer type" to an Call Flow App. But I don´t...