In Webitel WebClient, open Callflow - Public. Public is always an external route that comes from the provider. If nothing is configured, the system will discourage all incoming calls. In the Number field, you must specify the SIP login of your communication provider. Let's write a simple rule for our Youmagic numbers: call user 100 and 101 at the same time. To do this, create an ACR Scheme:

[
	{
		"answer": "180 Ringing"
	},
	{
		"bridge": {
			"strategy": "multiple",
			"parameters": [
				"instant_ringback=true",
				"ignore_early_media=true",
				"continue_on_fail=true"
			],
			"endpoints": [
				{
					"name": "100",
					"type": "user"
				},
				{
					"name": "101",
					"type": "user"
				}
			]
		}
	}
]

  • No labels