Retrieve Call Status from ConnectionID (v8.0 SDK - .NET)

is there a way to get all the call related properties w.r.t. ConnectionId ? I want the status of the TRANSFERCONNID while I am in EventReleased

There is no luck with this code (SDK v8.0 .NET)

                        var reqQueryCall = RequestQueryCall.Create(<<myDn>>, ((EventReleased) message).TransferConnID,
                                                CallInfoType.StatusQuery);

                        var responseQuery = _protocolManagementService[_serverName].Request(reqQueryCall);

                        var add = (AddressStatusInfoType)((responseQuery as EventPartyInfo).AddressInfoStatus);

If the call is released, then how can you query it?

1 Like