You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Graph API .net sdk to accept incoming call. Lets say the incoming call is A and then I do make another call to ask if an agent can join (call it B) to call A.
This works fine and I can see the participant in call A are now in a call with participant in B.
var transferTarget1 = new InvitationParticipantInfo {
ReplacesCallId = call_B.Id.ToString(),
Identity = agentIdinCallB
};
await (_callA).TransferAsync(transferTarget1);
However, I see that _callA and _callB are Terminated now I tried the other way :
var transferTarget1 = new InvitationParticipantInfo {
ReplacesCallId = call_A.Id.ToString(),
Identity = agentIdinCallB
};
await (_callB).TransferAsync(transferTarget1);
However, I see that _callA and _callB are Terminated.
I need to keep track of the incoming call for Observability proposes and later add participants to it, but now it does not let me do that. Does calling TransferAsync makes new a call object ?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi.
I am using Graph API .net sdk to accept incoming call. Lets say the incoming call is A and then I do make another call to ask if an agent can join (call it B) to call A.
This works fine and I can see the participant in call A are now in a call with participant in B.
However, I see that _callA and _callB are Terminated now I tried the other way :
However, I see that _callA and _callB are Terminated.
I need to keep track of the incoming call for Observability proposes and later add participants to it, but now it does not let me do that. Does calling TransferAsync makes new a call object ?
Beta Was this translation helpful? Give feedback.
All reactions