<dial>

Role: <dial> command is used when call needs to leave the system and connect with another number. For example, forwarding the call on number 1949300360 to another number 19492321402, requires system to dial another number and connect the 2nd leg with original caller. More actions can be taken if the called part does not pickup the call.

Use:

  • Number Masking: You dont want to expose you cell phone number to your contacts. People call the DID number and that number can be forwarded to your cell phone.

  • Multiple Business Numbers: You have many numbers from different sources and want to forward all the call to your main office line.

  • Call tacking and lean generation: Have a dedicated number for each ad or landing page and forward the call to a call center. Later you can generate a report which number was called most often.

While there are no limitation on where <dial> can be used, there definitely is requirement or set of attributes to use with <dial>. Below is a list of attributes to be used with <dial>, each attribute has a specific function and can use certain values.

Attributes

Here is an example of how <dial> is used within code.

<?xml version="1.0" encoding="UTF-8"?> 
<Response>
     <dial>19492321402</dial>
</Response>

In another example, dial will record the sessions and disconnect the call after 60 seconds.

<?xml version="1.0" encoding="UTF-8"?> 
<Response>
     <dial record="on" timeout="60">19492321402</dial>
</Response>

DIDforSale offer many ways you can connect the caller. Some are free and some are paid. For example, forward the call to another sip account or sip based pbx does not cost extra, While forwarding the call to another number might include outbound charges as well as inbound (Depending on what plan and agreement you have in place).

Here are more keyword you can use inside dial to connect the caller to second leg. These keywords can be nested inside dial command.

A simple example to nest <number> keyword to <dial>

<?xml version="1.0" encoding="UTF-8"?> 
<Response>
     <dial record="on" timeout="60"> 
       <number>19492321402</number>
     </dial>
</Response>

Example 2 Call a SIP Trunk using >sip>, here call wil be forwarded to sip.mydomain.com. sip.mydomain.com must accept all calls from our IPs. In the example username part is blank, so dialed number will be appended to the make full uri.

<?xml version="1.0" encoding="UTF-8"?> 
<Response>
     <dial record="on" timeout="60"> 
       <number>sip.mydomain.com</number>
     </dial>
</Response>

Last updated