ICallAnswer Method

Assures that the request answer was sent to the route point. this method hides Answer from the CallFlow script
Default behavior of CallFlow routepoint is to answer the call automatically.
The RoutePoint can be configured to not answer the call and launch the script in "Ringing" state
It this case, script can perform subset of operations which are not require interactions with user (DTMF input, audio playback)
Script can manipulate caller's attached data and use Divert(String, Boolean) or Divert(RegistrarRecord) to reroute call when finishes work with caller
Script can decide when to answer the call if it is required for the script logic. RunWithMedia(Action)
script should use this method only when executed in Active mode.

Definition

Namespace: CallFlow
Assembly: 3CX.CallFlow (in 3CX.CallFlow.dll) Version: 20.0.1
C#
bool Answer()

Return Value

Boolean
true if request was sent (connection was in initial state). false if already answered

See Also