- Joined
- Oct 30, 2025
- Messages
- 2
- Reaction score
- 0
This is the error we get when we try to bargin using the Call Control API:
Call control operation failed with result: Rejected(NotSpecified:Has no rights to barge in!)
In case it helps, this is what we're invoking using the C# Call Control API:
var ext100 = PhoneSystem.Root.GetDNByNumber("100");
var registrarContacts = ext100.GetRegistrarContactsEx();
var result = await registrarContacts[0].BargeInCallbackAsync(ac, PBXConnection.BargeInMode.BargeIn);
We invoke this when we receive an "Update" notification from the Call Control API, where the ActiveConnection is in the Connected state, for a call between an extension (agent) and an ExternalLine (customer). In this case we want to add another extension (with number 100) barging in the call. However we get that Exception when we invoke this.
Our final goal is to use the extension number of a Digital Receptionist or Call Flow App to barge in the call, which we tried and didn't work either. But this is not even working with an extension, which should be allowed....
Call control operation failed with result: Rejected(NotSpecified:Has no rights to barge in!)
In case it helps, this is what we're invoking using the C# Call Control API:
var ext100 = PhoneSystem.Root.GetDNByNumber("100");
var registrarContacts = ext100.GetRegistrarContactsEx();
var result = await registrarContacts[0].BargeInCallbackAsync(ac, PBXConnection.BargeInMode.BargeIn);
We invoke this when we receive an "Update" notification from the Call Control API, where the ActiveConnection is in the Connected state, for a call between an extension (agent) and an ExternalLine (customer). In this case we want to add another extension (with number 100) barging in the call. However we get that Exception when we invoke this.
Our final goal is to use the extension number of a Digital Receptionist or Call Flow App to barge in the call, which we tried and didn't work either. But this is not even working with an extension, which should be allowed....