We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33ed832 commit 725d7a0Copy full SHA for 725d7a0
protos/src/main/proto/tcnapi/exile/gate/v2/public.proto
@@ -684,6 +684,12 @@ message DialResponse {
684
CallType call_type = 4; // Type of call (inbound, outbound)
685
string org_id = 5; // Organization ID making the call
686
string partner_agent_id = 6; // Partner agent ID making the call
687
+ bool attempted = 7; // will be true if the call attempted to start
688
+ string status = 8; // if started is false this will contain why it was rejected
689
+ // added for backwards compatibility with old gate protos.
690
+ // this is just an alternate name for call_sid.
691
+ // will be removed in a future version.
692
+ string caller_sid = 9 [deprecated = true];
693
}
694
695
/**
0 commit comments